From 0314d38f20959adc2d4e5b6e2faf85619bca404c Mon Sep 17 00:00:00 2001 From: Kshitij Date: Sat, 9 Nov 2024 00:33:04 +0530 Subject: [PATCH] =?UTF-8?q?Added=20missing=20semicolon=20in=20example.=20T?= =?UTF-8?q?hanks=20to=20Narinder=20for=20pointing=20it=20out=20?= =?UTF-8?q?=F0=9F=99=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Practical/Assignment-A4+A5/Queries-A4.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;