Added select statement to view changes after firing query 1.

This commit is contained in:
K 2024-11-09 15:26:58 +05:30
parent 0178c80bf5
commit 3dc3d1e78c
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F

View File

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