Changes between Version 12 and Version 13 of F3


Ignore:
Timestamp:
05/27/26 19:58:12 (3 hours ago)
Author:
231121
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • F3

    v12 v13  
    4141{{{
    4242EXPLAIN ANALYZE
    43 }}}
    44 {{{
    45 INSERT INTO Appointment (appointment_id, appointment-time, status, exam_room_id) VALUES (10000001, NOW() + INTERVAL '2 hours', 'Scheduled', 1);
     43INSERT INTO Appointment (appointment_id, appointment-time, status, exam_room_id)
     44VALUES (10000001, NOW() + INTERVAL '2 hours', 'Scheduled', 1);
    4645}}}
    4746
     
    6564{{{
    6665EXPLAIN ANALYZE
    67 }}}
    68 {{{
    69 UPDATE Appointment SET appointment_time = appointment_time + INTERVAL '30 minutes' WHERE exam_room_id = 1 AND status = 'Scheduled';
     66UPDATE Appointment SET appointment_time = appointment_time + INTERVAL '30 minutes'
     67WHERE exam_room_id = 1 AND status = 'Scheduled';
    7068}}}
    7169