Advertisement
Gaela

Untitled

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