Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. mysql> SELECT * FROM wizard;
  2. +----+-----------+------------+------------+-------------+-------------------------------------------------------------+-----------+
  3. | id | firstname | lastname | birthday | birth_place | biography | is_muggle |
  4. +----+-----------+------------+------------+-------------+-------------------------------------------------------------+-----------+
  5. | 1 | harry | potter | 1980-07-31 | london | | 0 |
  6. | 2 | hermione | granger | 1979-09-19 | | Friend of Harry Potter | 0 |
  7. | 3 | lily | potter | 1960-01-30 | | mother of Harry Potter | 0 |
  8. | 4 | ron | weasley | 1980-03-01 | | Best friend of Harry | 0 |
  9. | 5 | ginny | weasley | 1981-08-11 | | Sister of Ron and girlfriend of Harry | 0 |
  10. | 6 | fred | weasley | 1978-04-01 | | | 0 |
  11. | 7 | george | weasley | 1978-04-01 | | | 0 |
  12. | 8 | arthur | weasley | 1950-02-06 | | | 0 |
  13. | 9 | molly | weasley | 1949-01-01 | | | 0 |
  14. | 10 | drago | malefoy | 1980-06-05 | | | 0 |
  15. | 11 | albus | dumbledore | 1881-07-01 | | | 0 |
  16. | 12 | severus | rogue | 1960-01-09 | | | 0 |
  17. | 13 | tom | jédusor | 1926-12-31 | | Celui-Dont-On-Ne-Doit-Pas-Prononcer-Le-Nom alias Voldermort | 0 |
  18. | 14 | dudley | dursley | 1980-06-23 | | Cousin d'Harry | 1 |
  19. +----+-----------+------------+------------+-------------+-------------------------------------------------------------+-----------+
  20. 14 rows in set (0.00 sec)
  21.  
  22. mysql> SELECT * FROM wizard WHERE birthday BETWEEN '1975-01-01' AND '1985-12-31';
  23. +----+-----------+----------+------------+-------------+---------------------------------------+-----------+
  24. | id | firstname | lastname | birthday | birth_place | biography | is_muggle |
  25. +----+-----------+----------+------------+-------------+---------------------------------------+-----------+
  26. | 1 | harry | potter | 1980-07-31 | london | | 0 |
  27. | 2 | hermione | granger | 1979-09-19 | | Friend of Harry Potter | 0 |
  28. | 4 | ron | weasley | 1980-03-01 | | Best friend of Harry | 0 |
  29. | 5 | ginny | weasley | 1981-08-11 | | Sister of Ron and girlfriend of Harry | 0 |
  30. | 6 | fred | weasley | 1978-04-01 | | | 0 |
  31. | 7 | george | weasley | 1978-04-01 | | | 0 |
  32. | 10 | drago | malefoy | 1980-06-05 | | | 0 |
  33. | 14 | dudley | dursley | 1980-06-23 | | Cousin d'Harry | 1 |
  34. +----+-----------+----------+------------+-------------+---------------------------------------+-----------+
  35. 8 rows in set (0.00 sec)
  36.  
  37. mysql> SELECT firstname FROM wizard WHERE firstname LIKE 'H%';
  38. +-----------+
  39. | firstname |
  40. +-----------+
  41. | harry |
  42. | hermione |
  43. +-----------+
  44. 2 rows in set (0.00 sec)
  45.  
  46. mysql> SELECT firstname, lastname FROM wizard WHERE lastname='Potter' ORDER BY firstname ASC;
  47. +-----------+----------+
  48. | firstname | lastname |
  49. +-----------+----------+
  50. | harry | potter |
  51. | lily | potter |
  52. +-----------+----------+
  53. 2 rows in set (0.00 sec)
  54.  
  55. mysql> SELECT firstname, lastname, birthday FROM wizard ORDER BY birthday ASC LIMIT 0,1;
  56. +-----------+------------+------------+
  57. | firstname | lastname | birthday |
  58. +-----------+------------+------------+
  59. | albus | dumbledore | 1881-07-01 |
  60. +-----------+------------+------------+
  61. 1 row in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement