From 005b7e3a40eb5bfa250c327c173a6e0dba82a0d6 Mon Sep 17 00:00:00 2001 From: Kshitij Date: Sat, 9 Nov 2024 13:13:24 +0530 Subject: [PATCH] Added describe table line in 5th query to view changes. --- Practical/Practical Exam/SQL/S5 - SQL Queries.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Practical/Practical Exam/SQL/S5 - SQL Queries.md b/Practical/Practical Exam/SQL/S5 - SQL Queries.md index a8186f7..721ae96 100644 --- a/Practical/Practical Exam/SQL/S5 - SQL Queries.md +++ b/Practical/Practical Exam/SQL/S5 - SQL Queries.md @@ -130,6 +130,7 @@ SELECT Employee.employee_name, Employee.street, Employee.city FROM Employee INNE 5. Add Column Asset to Company table. ```sql ALTER TABLE Company ADD assets INT; +DESCRIBE Company; ```