Advertisement
Guest User

Untitled

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