From f598bb2bd4148f6f9f3cf759d5b44d0bf37d9204 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Tue, 27 Aug 2019 02:47:30 -0400 Subject: [PATCH] Fix comment formatting --- Cruise.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cruise.sql b/Cruise.sql index d6befb7..e8a0787 100644 --- a/Cruise.sql +++ b/Cruise.sql @@ -133,7 +133,7 @@ INSERT INTO Reservation VALUES (reservationID_seq.nextval, 11, 5, 9, '1-Feb-19') INSERT INTO Reservation VALUES (reservationID_seq.nextval, 7, 4, 8, '15-Mar-19'); INSERT INTO Reservation VALUES (reservationID_seq.nextval, 14, 4, 3, '28-Feb-19'); --- Part 3; Queries; +-- Part 3; Queries. -- 3a SELECT cruiseName, departurePort, shipName, price FROM Cruise; UPDATE Cruise SET price = ROUND(price * 1.15, 2) WHERE departurePort = 'Miami';