Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. mysql> INSERT INTO school (name, country, capacity)
  2. -> VALUES ('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.07 sec)
  11. Records: 8 Duplicates: 0 Warnings: 0
  12.  
  13. mysql> SELECT * FROM school;
  14. +----+----------------------------------------------+----------+----------------+
  15. | id | name | capacity | country |
  16. +----+----------------------------------------------+----------+----------------+
  17. | 1 | Beauxbatons Academy of Magic | 550 | France |
  18. | 2 | Castelobruxo | 380 | Brazil |
  19. | 3 | Durmstrang Institute | 570 | Norway |
  20. | 4 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  21. | 5 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  22. | 6 | Koldovstoretz | 125 | Russia |
  23. | 7 | Mahoutokoro School of Magic | 800 | Japan |
  24. | 8 | Uagadou School of Magic | 350 | Uganda |
  25. +----+----------------------------------------------+----------+----------------+
  26. 8 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement