Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. mysql> INSERT INTO school
  2. -> (s_name, s_country, s_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.01 sec)
  12. Records: 8 Duplicates: 0 Warnings: 0
  13.  
  14. mysql> SELECT * FROM school;
  15. +------+----------------------------------------------+------------+----------------+
  16. | s_id | s_name | s_capacity | s_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 s_country='Sweden' WHERE s_id=3;
  30. Query OK, 1 row affected (0.01 sec)
  31. Rows matched: 1 Changed: 1 Warnings: 0
  32.  
  33. mysql> UPDATE school
  34. -> SET s_capacity=700
  35. -> WHERE s_id=7;
  36. Query OK, 1 row affected (0.01 sec)
  37. Rows matched: 1 Changed: 1 Warnings: 0
  38.  
  39. mysql> DELETE FROM school
  40. -> WHERE s_name LIKE '%Magic%';
  41. Query OK, 3 rows affected (0.01 sec)
  42.  
  43. mysql> SELECT * FROM school;
  44. +------+----------------------------------------------+------------+----------------+
  45. | s_id | s_name | s_capacity | s_country |
  46. +------+----------------------------------------------+------------+----------------+
  47. | 2 | Castelobruxo | 380 | Brazil |
  48. | 3 | Durmstrang Institute | 570 | Sweden |
  49. | 4 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  50. | 5 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  51. | 6 | Koldovstoretz | 125 | Russia |
  52. +------+----------------------------------------------+------------+----------------+
  53. 5 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement