v.18.12Improvement
Specifying Offset in LIMIT Clause
You can specify an offset forLIMIT n, masLIMIT n OFFSET m. #2840
Why it matters
This feature allows users to specify an offset in theLIMIT clause using the more standard LIMIT n OFFSET m syntax, improving SQL compatibility and making queries more readable and familiar for those coming from other SQL databases.How to use it
Users can replace the existingLIMIT n, m syntax with the equivalent LIMIT n OFFSET m syntax in their queries, for example:SELECT * FROM table_name LIMIT 10 OFFSET 20