Added select line in 3rd query to view changes.

This commit is contained in:
K 2024-11-09 13:11:34 +05:30
parent 802e2107cd
commit c672bfb5f9
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F

View File

@ -116,6 +116,7 @@ SELECT company_name, employee_name FROM Works ORDER BY company_name ASC, employe
3. Change the city of employee working with InfoSys to Bangalore
```sql
UPDATE Company SET city = "Bangalore" WHERE company_name = "Infosys";
SELECT * FROM Company;
```