Advertisement
Guest User

Untitled

a guest
May 24th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. mysql> INSERT INTO school (name, country, capacity) VALUES ('Ilvermorny School of Witchcraft and Wizardry', 'USA', 300), ('Koldovstoretz', 'Russia', 125), ('Mahoutokoro School of Magic', 'Japan', 800), ('Uagadou School of Magic','Uganda',350);
  2.  
  3.  
  4. mysql> UPDATE school SET country='Sweden' WHERE id=4;
  5.  
  6. mysql> UPDATE school SET capacity=700 WHERE id=7;
  7.  
  8. mysql> DELETE FROM school WHERE name LIKE '%Magic%';
  9.  
  10. +----+----------------------------------------------+----------+----------------+
  11. | id | name | capacity | country |
  12. +----+----------------------------------------------+----------+----------------+
  13. | 1 | Hogwarts School of Witchcraft and Wizardry | 400 | United Kingdom |
  14. | 3 | Castelobruxo | 380 | Brazil |
  15. | 4 | Durmstrang Institute | 570 | Sweden |
  16. | 5 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  17. | 6 | Koldovstoretz | 125 | Russia |
  18. +----+----------------------------------------------+----------+----------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement