Advertisement
Guest User

Untitled

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