From 3dc3d1e78c34411f561af407f7faab5fca736ec1 Mon Sep 17 00:00:00 2001 From: Kshitij Date: Sat, 9 Nov 2024 15:26:58 +0530 Subject: [PATCH] Added select statement to view changes after firing query 1. --- Practical/Practical Exam/SQL/S6 - SQL Queries.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Practical/Practical Exam/SQL/S6 - SQL Queries.md b/Practical/Practical Exam/SQL/S6 - SQL Queries.md index 0653789..36ca5a9 100644 --- a/Practical/Practical Exam/SQL/S6 - SQL Queries.md +++ b/Practical/Practical Exam/SQL/S6 - SQL Queries.md @@ -108,6 +108,7 @@ INSERT INTO Manages VALUES 1. Change the city of employee working with InfoSys to ‘Bangalore’ ```sql UPDATE Company SET city = "Bangalore" WHERE company_name = "Infosys"; +SELECT * FROM Company; ```