Added missing semicolon in example. Thanks to Narinder for pointing it out 🙇

This commit is contained in:
K 2024-11-09 00:33:04 +05:30
parent f3eb6f536c
commit 0314d38f20
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F

View File

@ -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;