Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. MariaDB [lsr]> SELECT *
  2. -> FROM PassportReplacementReasons;
  3. +----+---------+-------------------------------------+----------+-------+
  4. | id | visible | display | ordering | other |
  5. +----+---------+-------------------------------------+----------+-------+
  6. | 1 | 1 | Replacing a lost or stolen passport | 1 | 0 |
  7. | 2 | 1 | Replacing a damaged passport | 2 | 0 |
  8. | 3 | 1 | Renewing a passport | 3 | 0 |
  9. | 4 | 1 | Changing your details or photo | 4 | 0 |
  10. | 5 | 1 | Another reason | 5 | 1 |
  11. | 6 | 1 | You don't remember | 6 | 0 |
  12. +----+---------+-------------------------------------+----------+-------+
  13. 6 rows in set (0.00 sec)
  14.  
  15. MariaDB [lsr]> SELECT *
  16. -> FROM PassportApplicationMethods;
  17. +----+---------+---------------------------------------+----------+-------+
  18. | id | visible | display | ordering | other |
  19. +----+---------+---------------------------------------+----------+-------+
  20. | 1 | 1 | By post | 1 | 0 |
  21. | 2 | 1 | Using Check & Send at the Post Office | 2 | 0 |
  22. | 3 | 1 | At a passport office counter | 3 | 0 |
  23. | 4 | 1 | Online | 4 | 0 |
  24. | 5 | 1 | Another way | 5 | 1 |
  25. | 6 | 1 | You don't remember | 6 | 0 |
  26. +----+---------+---------------------------------------+----------+-------+
  27. 6 rows in set (0.00 sec)
  28.  
  29. MariaDB [lsr]>
  30. MariaDB [lsr]> SELECT *
  31. -> FROM LostStolenReasons;
  32. +-----------+---------+------------+-----------------------+----------+-------+
  33. | id | visible | lostStolen | display | ordering | other |
  34. +-----------+---------+------------+-----------------------+----------+-------+
  35. | 1 | 1 | Stolen | While socialising | 10 | 0 |
  36. | 2 | 1 | Stolen | Mugged / pickpocketed | 20 | 0 |
  37. | 3 | 1 | Stolen | From home | 30 | 0 |
  38. | 4 | 1 | Stolen | While travelling | 40 | 0 |
  39. | 5 | 1 | Lost | While socialising | 10 | 0 |
  40. | 6 | 1 | Lost | At home | 20 | 0 |
  41. | 7 | 1 | Lost | While moving house | 30 | 0 |
  42. | 8 | 1 | Lost | While travelling | 40 | 0 |
  43. | 9 | 1 | Lost | I don't know | 60 | 0 |
  44. | 10 | 1 | Stolen | I don't know | 60 | 0 |
  45. | 100000000 | 1 | Lost | Another reason | 50 | 1 |
  46. | 100000001 | 1 | Stolen | Another reason | 50 | 1 |
  47. +-----------+---------+------------+-----------------------+----------+-------+
  48. 12 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement