Changes between Version 5 and Version 6 of UseCase3


Ignore:
Timestamp:
12/12/24 22:18:33 (5 weeks ago)
Author:
211228
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase3

    v5 v6  
    1010
    1111{{{
    12 INSERT INTO Dorm_Document (d_id, d_comment, d_status, upload_date, file_path, emp_id, student_id)
     12INSERT INTO Dorm_Document (d_id, d_comment, upload_date, file_path, emp_id, student_id)
    1313VALUES
    14     (1, 'Room allocation document', 'Pending', '2024-01-10', '/path/to/doc1.pdf', 4, 1),
    15     (2, 'Payment confirmation', 'Pending', '2024-02-15', '/path/to/doc2.pdf', 4, 2);
     14    (1, 'Room allocation document', '2024-01-10', '/path/to/doc1.pdf', 4, 1),
     15    (2, 'Payment confirmation', '2024-02-15', '/path/to/doc2.pdf', 4, 2);
    1616}}}
    1717