Changes between Version 12 and Version 13 of F3
- Timestamp:
- 05/27/26 19:58:12 (3 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
F3
v12 v13 41 41 {{{ 42 42 EXPLAIN ANALYZE 43 }}} 44 {{{ 45 INSERT INTO Appointment (appointment_id, appointment-time, status, exam_room_id) VALUES (10000001, NOW() + INTERVAL '2 hours', 'Scheduled', 1); 43 INSERT INTO Appointment (appointment_id, appointment-time, status, exam_room_id) 44 VALUES (10000001, NOW() + INTERVAL '2 hours', 'Scheduled', 1); 46 45 }}} 47 46 … … 65 64 {{{ 66 65 EXPLAIN ANALYZE 67 }}} 68 {{{ 69 UPDATE Appointment SET appointment_time = appointment_time + INTERVAL '30 minutes' WHERE exam_room_id = 1 AND status = 'Scheduled'; 66 UPDATE Appointment SET appointment_time = appointment_time + INTERVAL '30 minutes' 67 WHERE exam_room_id = 1 AND status = 'Scheduled'; 70 68 }}} 71 69
