Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. mysql> SELECT * FROM wizard_quete -> ;
  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 firstname, lastname FROM wizard WHERE birthday BETWEEN '1975-01-01' AND '1986-01-01';
  23. +-----------+----------+
  24. | firstname | lastname |
  25. +-----------+----------+
  26. | harry | potter |
  27. | hermione | granger |
  28. | ron | weasley |
  29. | ginny | weasley |
  30. | hermione | granger |
  31. | ron | weasley |
  32. | ginny | weasley |
  33. | fred | weasley |
  34. | george | weasley |
  35. | dudley | dursley |
  36. +-----------+----------+
  37. 10 rows in set (0,00 sec)
  38.  
  39. mysql> SELECT firstname, birthday FROM wizard_quete WHERE firstanme LIKE 'H%';
  40. ERROR 1054 (42S22): Unknown column 'firstanme' in 'where clause'
  41. mysql> SELECT firstname, birthday FROM wizard_quete WHERE firstname LIKE 'H%';
  42. +-----------+------------+
  43. | firstname | birthday |
  44. +-----------+------------+
  45. | harry | 1980-07-31 |
  46. | hermione | 1979-09-19 |
  47. +-----------+------------+
  48. 2 rows in set (0,00 sec)
  49.  
  50. mysql> SELECT firstname, lastname FROM wizard_quete WHERE lastname="potter" and ORDER BY firstname ASC;
  51. ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY firstname ASC' at line 1
  52. mysql> SELECT firstname, lastname FROM wizard_quete WHERE lastname="potter" ORDER BY firstname ASC;
  53. +-----------+----------+
  54. | firstname | lastname |
  55. +-----------+----------+
  56. | harry | potter |
  57. | lily | potter |
  58. +-----------+----------+
  59. 2 rows in set (0,01 sec)
  60.  
  61. mysql> SELECT firstname, lastname, birthday FROM wizard_quete ORDER BY birthday ASC LIMIT 0,1;
  62. +-----------+------------+------------+
  63. | firstname | lastname | birthday |
  64. +-----------+------------+------------+
  65. | albus | dumbledore | 1881-07-01 |
  66. +-----------+------------+------------+
  67. 1 row in set (0,00 sec)
  68.  
  69. mysql>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement