Advertisement
Guest User

Untitled

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