v.19.3New Features
Support for Arbitrary Constant Expressions in LIMIT Clause
Why it matters
This feature allows users to use any constant expression within theLIMIT clause instead of just literal numbers, enabling more flexible and dynamic query limits.How to use it
Simply use any constant expression (e.g., arithmetic operations, function calls returning constants) inside theLIMIT clause of your query, for example: sql<br>SELECT * FROM table LIMIT 10 + 5<br>