Created
November 8, 2021 08:24
-
-
Save vmalep/25cf3aebc9e7e2c6fd351bf0aed0a69a to your computer and use it in GitHub Desktop.
Quest 485 - Pierre van Male
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql> USE wild_db_quest; | |
Reading table information for completion of table and column names | |
You can turn off this feature to get a quicker startup with -A | |
Database changed | |
mysql> INSERT INTO school (name, country, capacity) | |
-> VALUES ('Beauxbatons Academy of Magic', 'France', 550), | |
-> ('Castelobruxo', 'Brazil', 380), | |
-> ('Durmstrang Institute', 'Norway', 570), | |
-> ('Hogwarts School of Witchcraft and Wizardry', 'United Kingdom', 450), | |
-> ('Ilvermorny School of Witchcraft and Wizardry', 'USA', 300), | |
-> ('Koldovstoretz', 'Russia',125), | |
-> ('Mahoutokoro School of Magic', 'Japan', 800), | |
-> ('Uagadou School of Magic', 'Uganda', 350); | |
Query OK, 8 rows affected (0,02 sec) | |
Records: 8 Duplicates: 0 Warnings: 0 | |
mysql> UPDATE school | |
-> SET country='Sweden' | |
-> WHERE id=3; | |
Query OK, 1 row affected (0,02 sec) | |
Rows matched: 1 Changed: 1 Warnings: 0 | |
mysql> UPDATE school | |
-> SET country='Sweden' | |
-> WHERE id=7; | |
Query OK, 1 row affected (0,02 sec) | |
Rows matched: 1 Changed: 1 Warnings: 0 | |
mysql> DELETE FROM school | |
-> WHERE name LIKE '%Magic%'; | |
Query OK, 3 rows affected (0,02 sec) | |
mysql> SELECT * FROM school; | |
+----+----------------------------------------------+----------+----------------+ | |
| id | name | capacity | country | | |
+----+----------------------------------------------+----------+----------------+ | |
| 2 | Castelobruxo | 380 | Brazil | | |
| 3 | Durmstrang Institute | 570 | Sweden | | |
| 4 | Hogwarts School of Witchcraft and Wizardry | 450 | United Kingdom | | |
| 5 | Ilvermorny School of Witchcraft and Wizardry | 300 | USA | | |
| 6 | Koldovstoretz | 125 | Russia | | |
+----+----------------------------------------------+----------+----------------+ | |
5 rows in set (0,00 sec) | |
mysql> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment