Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
SELECT * FROM customers ORDER BY createdcreate_date LIMIT 5

 

The following query returns the  3rd to the first 5 7th customers to be created

Code Block
SELECT * FROM customers ORDER BY createdcreate_date LIMIT 2,5


REGEX Column Specification

...