-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Negative LIMIT specification. #28913
Copy link
Copy link
Closed
Labels
featurewarmup taskThe task for new ClickHouse team members. Low risk, moderate complexity, no urgency.The task for new ClickHouse team members. Low risk, moderate complexity, no urgency.
Description
Use case
LIMIT -10
- return 10 last records (regardless of total number of records).
Can be combined with negative offset (but not with positive offset).
Describe the solution you'd like
Just implement it.
Describe alternatives you've considered
SELECT * (SELECT ... ORDER BY x DESC LIMIT 10) ORDER BY x ASC
But it's more cumbersome.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
featurewarmup taskThe task for new ClickHouse team members. Low risk, moderate complexity, no urgency.The task for new ClickHouse team members. Low risk, moderate complexity, no urgency.