Advertisement
Guest User

Untitled

a guest
May 25th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. INSERT INTO schools (name, country, capacity) VALUES
  2. ('Beauxbatons Academy of Magic', 'France', 550),
  3. ('Castelobruxo', 'Brazil', 380),
  4. ('Durmstrang Institute', 'Sweden', 570),
  5. ('Ilvermorny School of Witchcraft and Wizardry', 'USA', 300),
  6. ('Koldovstoretz', 'Russia', 125),
  7. ('Mahoutokoro School of Magic','Japan', 800),
  8. ('Uagadou School of Magic', 'Uganda', 350);
  9.  
  10. mysql> SELECT * FROM schools;
  11. +----+----------------------------------------------+----------+----------------+
  12. | id | name | capacity | country |
  13. +----+----------------------------------------------+----------+----------------+
  14. | 5 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  15. | 6 | Beauxbatons Academy of Magic | 550 | France |
  16. | 7 | Castelobruxo | 380 | Brazil |
  17. | 8 | Durmstrang Institute | 570 | Norway |
  18. | 9 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  19. | 10 | Koldovstoretz | 125 | Russia |
  20. | 11 | Mahoutokoro School of Magic | 800 | Japan |
  21. | 12 | Uagadou School of Magic | 350 | Uganda |
  22. +----+----------------------------------------------+----------+----------------+
  23. 8 rows in set (0,05 sec)
  24.  
  25. mysql> DELETE FROM schools WHERE name LIKE '%Magic';
  26. Query OK, 3 rows affected (0,03 sec)
  27.  
  28. UPDATE schools SET country='Sweden' WHERE country='Norway';
  29. Query OK, 1 row affected (0,38 sec)
  30. Rows matched: 1 Changed: 1 Warnings: 0
  31.  
  32. mysql> UPDATE schools SET capacity= 700 WHERE country='Japan';
  33. Query OK, 1 row affected (0,40 sec)
  34. Rows matched: 1 Changed: 1 Warnings: 0
  35.  
  36. mysql> SELECT * FROM schools;
  37. +----+----------------------------------------------+----------+----------------+
  38. | id | name | capacity | country |
  39. +----+----------------------------------------------+----------+----------------+
  40. | 5 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  41. | 7 | Castelobruxo | 380 | Brazil |
  42. | 9 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  43. | 10 | Koldovstoretz | 125 | Russia |
  44. | 13 | Mahoutokoro School of Magic | 700 | Japan |
  45. | 14 | Durmstrang Institute | 570 | Sweden |
  46. +----+----------------------------------------------+----------+----------------+
  47. 6 rows in set (0,00 sec)
  48.  
  49. mysql> DELETE FROM schools WHERE name LIKE '%Magic';
  50. Query OK, 1 row affected (0,06 sec)
  51.  
  52. mysql> SELECT * FROM schools;
  53. +----+----------------------------------------------+----------+----------------+
  54. | id | name | capacity | country |
  55. +----+----------------------------------------------+----------+----------------+
  56. | 5 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  57. | 7 | Castelobruxo | 380 | Brazil |
  58. | 9 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  59. | 10 | Koldovstoretz | 125 | Russia |
  60. | 14 | Durmstrang Institute | 570 | Sweden |
  61. +----+----------------------------------------------+----------+----------------+
  62. 5 rows in set (0,00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement