Advertisement
Guest User

Untitled

a guest
May 24th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. mysql> SELECT * FROM school;
  2. +----+----------------------------------------------+----------+----------------+
  3. | id | name | capacity | country |
  4. +----+----------------------------------------------+----------+----------------+
  5. | 1 | Beauxbatons Academy of Magic | 550 | France |
  6. | 2 | Castelobruxo | 380 | Brazil |
  7. | 3 | Durmstrang Institue | 570 | Suède |
  8. | 4 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  9. | 5 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  10. | 6 | Koldovstoretz | 120 | Russia |
  11. | 7 | Mahoutokoro School of Magic | 800 | Japan |
  12. | 8 | Uagadou School of Magic | 350 | Uganda |
  13. +----+----------------------------------------------+----------+----------------+
  14. 8 rows in set (0.00 sec)
  15.  
  16. mysql> UPDATE school
  17. -> SET country='Sweden'
  18. -> WHERE id=3;
  19. Query OK, 1 row affected (0.01 sec)
  20. Rows matched: 1 Changed: 1 Warnings: 0
  21.  
  22. mysql> UPDATE school
  23. -> SET capacity=700
  24. -> WHERE id=7;
  25. Query OK, 1 row affected (0.01 sec)
  26. Rows matched: 1 Changed: 1 Warnings: 0
  27.  
  28. mysql> DELETE FROM school
  29. -> WHERE name LIKE '%Magic%';
  30. Query OK, 3 rows affected (0.02 sec)
  31.  
  32. mysql> SELECT * FROM school;
  33. +----+----------------------------------------------+----------+----------------+
  34. | id | name | capacity | country |
  35. +----+----------------------------------------------+----------+----------------+
  36. | 2 | Castelobruxo | 380 | Brazil |
  37. | 3 | Durmstrang Institue | 570 | Sweden |
  38. | 4 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom |
  39. | 5 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA |
  40. | 6 | Koldovstoretz | 120 | Russia |
  41. +----+----------------------------------------------+----------+----------------+
  42. 5 rows in set (0.00 sec)
  43.  
  44. mysql>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement