Advertisement
Guest User

Untitled

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