Last active
March 26, 2019 10:13
-
-
Save ConnorFM/a6004e4a86c30abf0221c18f75b73ab4 to your computer and use it in GitHub Desktop.
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> SELECT * FROM wizard WHERE birthday BETWEEN '1975-01-01' AND '1985-12-31' and is_muggle=0; | |
+----+-----------+----------+------------+-------------+---------------------------------------+-----------+ | |
| id | firstname | lastname | birthday | birth_place | biography | is_muggle | | |
+----+-----------+----------+------------+-------------+---------------------------------------+-----------+ | |
| 1 | harry | potter | 1980-07-31 | london | | 0 | | |
| 2 | hermione | granger | 1979-09-19 | | Friend of Harry Potter | 0 | | |
| 4 | ron | weasley | 1980-03-01 | | Best friend of Harry | 0 | | |
| 5 | ginny | weasley | 1981-08-11 | | Sister of Ron and girlfriend of Harry | 0 | | |
| 6 | fred | weasley | 1978-04-01 | | | 0 | | |
| 7 | george | weasley | 1978-04-01 | | | 0 | | |
| 10 | drago | malefoy | 1980-06-05 | | | 0 | | |
+----+-----------+----------+------------+-------------+---------------------------------------+-----------+ | |
7 rows in set (0,00 sec) | |
mysql> SELECT firstname FROM wizard WHERE firstname LIKE 'H%'; | |
+-----------+ | |
| firstname | | |
+-----------+ | |
| harry | | |
| hermione | | |
+-----------+ | |
2 rows in set (0,00 sec) | |
mysql> SELECT firstname, lastname from wizard where lastname like 'Potter' order by firstname asc; | |
+-----------+----------+ | |
| firstname | lastname | | |
+-----------+----------+ | |
| harry | potter | | |
| lily | potter | | |
+-----------+----------+ | |
2 rows in set (0,00 sec) | |
mysql> SELECT firstname, lastname, birthday from wizard order by birthday asc limit 0,1; | |
+-----------+------------+------------+ | |
| firstname | lastname | birthday | | |
+-----------+------------+------------+ | |
| albus | dumbledore | 1881-07-01 | | |
+-----------+------------+------------+ | |
1 row in set (0,00 sec) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment