Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. mysql> INSERT INTO school (name, country, capacity) VALUES
  2. -> ('Beauxbatons Academy of Magic', 'France', 550),
  3. -> ('Castelobruxo', 'Brazil', 380),
  4. -> ('Durmstrang Institute', 'Norway', 570),
  5. -> ('Hogwarts School of Witchcraft and Wizardry', 'United Kingdom', 450),
  6. -> ('Ilvermorny School of Witchcraft and Wizardry', 'USA', 300),
  7. -> ('Koldovstoretz', 'Russia', 125),
  8. -> ('Mahoutokoro School of Magic', 'Japan', 800),
  9. -> ('Uagadou School of Magic', 'Uganda', 350);
  10. Query OK, 8 rows affected (0.01 sec)
  11. Records: 8 Duplicates: 0 Warnings: 0
  12.  
  13. mysql> UPDATE school SET country = 'Sweden' WHERE id=3;
  14. Query OK, 1 row affected (0.01 sec)
  15. Rows matched: 1 Changed: 1 Warnings: 0
  16.  
  17. mysql> UPDATE school SET capacity = 700 WHERE id=7;
  18. Query OK, 1 row affected (0.01 sec)
  19. Rows matched: 1 Changed: 1 Warnings: 0
  20.  
  21. mysql> DELETE FROM school WHERE name LIKE '%Magic';
  22. Query OK, 3 rows affected (0.01 sec)
  23.  
  24. mysql> SELECT * FROM school;
  25. +----+----------------------------------------------+----------+----------------+
  26. | id | name | capacity | country |
  27. +----+----------------------------------------------+----------+----------------+
  28. | 2 | Castelobruxo | 380 | Brazil |
  29. | 3 | Durmstrang Institute | 570 | Sweden |
  30. | 4 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  31. | 5 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  32. | 6 | Koldovstoretz | 125 | Russia |
  33. +----+----------------------------------------------+----------+----------------+
  34. 5 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement