Add modify bookings scripts and results

This commit is contained in:
2024-11-18 15:52:59 +01:00
parent 0d75c1c035
commit 936c1d3ed4
4 changed files with 145 additions and 0 deletions

13
sql/cancel_booking.sql Normal file
View File

@@ -0,0 +1,13 @@
-- modify bookings - task 3
-- add and update bookings - task 3
-- noqa: disable=CP03,LT02,RF03
create procedure CancelBooking (in BookingID int)
begin
delete from Bookings as B
where B.BookingID = BookingID;
if row_count() = 1 then
select concat("Booking ", BookingID, " cancelled") as Confirmation;
else
select concat("Booking ", BookingID, " not cancelled - missing booking") as Confirmation;
end if;
end