Advertisement
Guest User

Untitled

a guest
May 24th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. mysql> insert into school (name, country, capacity) values
  2. -> ('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.00 sec)
  11. Records: 8 Duplicates: 0 Warnings: 0
  12.  
  13. mysql> update school
  14. -> set country='Sweden'
  15. -> where name='Durmstrang Institute';
  16. Query OK, 1 row affected (0.00 sec)
  17. Rows matched: 1 Changed: 1 Warnings: 0
  18.  
  19. mysql> update school
  20. -> set capacity=700
  21. -> where name='Mahoutokoro School of Magic';
  22. Query OK, 1 row affected (0.00 sec)
  23. Rows matched: 1 Changed: 1 Warnings: 0
  24.  
  25. mysql> delete from school
  26. -> where name like '%Magic%';
  27. Query OK, 3 rows affected (0.00 sec)
  28.  
  29. mysql> select * from school;
  30. +----+----------------------------------------------+----------+----------------+
  31. | id | name | capacity | country |
  32. +----+----------------------------------------------+----------+----------------+
  33. | 2 | Castelobruxo | 380 | Brazil |
  34. | 3 | Durmstrang Institute | 570 | Sweden |
  35. | 4 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  36. | 5 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  37. | 6 | Koldovstoretz | 125 | Russia |
  38. +----+----------------------------------------------+----------+----------------+
  39. 5 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement