diff --git a/Practical/Assignment-A4+A5/Queries-A4.md b/Practical/Assignment-A4+A5/Queries-A4.md index 9e655f2..d3dcee4 100644 --- a/Practical/Assignment-A4+A5/Queries-A4.md +++ b/Practical/Assignment-A4+A5/Queries-A4.md @@ -36,9 +36,9 @@ INSERT INTO Borrower VALUES (4, 'Kshitij', TO_DATE('2024-10-29', 'YYYY-MM-DD'), ```sql DECLARE p_roll NUMBER; -- specify roll number here since Live SQL cannot take input from user - -- Eg. p_roll NUMBER := 1 will take roll number 1 as input + -- Eg. p_roll NUMBER := 1; will take roll number 1 as input p_book VARCHAR2(255); -- specify book name here since Live SQL cannot take input from user - -- Eg. p_book VARCHAR2(255) := 'DBMS' + -- Eg. p_book VARCHAR2(255) := 'DBMS'; p_issueDate DATE; totalDays NUMBER; currentDate DATE;