Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.99 KB | None | 0 0
  1. +--------------------------------------+---------------------------------------------------------------------------------------------------+------+-----+---------+----------------+
  2. | Field                                | Type                                                                                              | Null | Key | Default | Extra          |
  3. +--------------------------------------+---------------------------------------------------------------------------------------------------+------+-----+---------+----------------+
  4. | id                                   | int(11)                                                                                           | NO   | PRI | NULL    | auto_increment |
  5.  
  6. MariaDB [databaseName]> select id from orders order by id desc limit 10;
  7. +---------+
  8. | id      |
  9. +---------+
  10. | 2622736 |
  11. | 2622735 |
  12. | 2622734 |
  13. | 2622733 |
  14. | 2622732 |
  15. | 2622731 |
  16. | 2622730 |
  17. | 2622729 |
  18. | 2622728 |
  19. | 2622727 |
  20. +---------+
  21. 10 rows in set (0.00 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement