-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathexercise17.sql
More file actions
13 lines (13 loc) · 889 Bytes
/
exercise17.sql
File metadata and controls
13 lines (13 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
mysql> UPDATE Students SET City = 'Edinburgh' WHERE Country = 'Scotland';
+---------------+-------------+-----------+----------+------------+
| StudentName | Address | City | Country | PostalCode |
+---------------+-------------+-----------+----------+------------+
| Jane Doe | 57 Union St | Edinburgh | Scotland | G13RB |
| John Doe | 58 Union St | CityName | USA | 19805 |
| Joe Doe | 58 Union St | CityName | USA | 19805 |
| John John | 58 Union St | CityName | USA | 19805 |
| Jose Jose | 58 Union St | CityName | Mexico | 19805 |
| Jose Jose | 58 Union St | CityName | Mexico | 19805 |
| Jose Jose | 58 Union St | CityName | Mexico | |
| Jose LastName | 58 Union St | CityName | Mexico | |
+---------------+-------------+-----------+----------+------------+