Advertisement
Guest User

Untitled

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