LIMIT 절
적용 대상: Databricks SQL Databricks 런타임
쿼리에서 반환하는 행 수를 제한합니다. 일반적으로 이 절은 결과가 결정적임을 확인하기 위해 ORDER BY와 함께 사용됩니다.
구문
LIMIT { ALL | integer_expression }
매개 변수
ALL
지정된 경우 쿼리는 모든 행을 반환합니다. 즉, 이 옵션을 지정하면 제한이 적용되지 않습니다.
integer_expression
정수를 반환하는 리터럴 식입니다.
예제
> CREATE TEMP VIEW person (name, age)
AS VALUES ('Zen Hui', 25),
('Anil B' , 18),
('Shone S', 16),
('Mike A' , 25),
('John A' , 18),
('Jack N' , 16);
-- Select the first two rows.
> SELECT name, age FROM person ORDER BY name LIMIT 2;
Anil B 18
Jack N 16
-- Select the 4th and 5th rows by alphabetical order.
> SELECT name, age FROM person ORDER BY name LIMIT 2 OFFSET 3;
Mike A 25
Shone S 16
-- Specifying ALL option on LIMIT returns all the rows.
> SELECT name, age FROM person ORDER BY name LIMIT ALL;
Anil B 18
Jack N 16
John A 18
Mike A 25
Shone S 16
Zen Hui 25
-- A function expression as an input to LIMIT.
> SELECT name, age FROM person ORDER BY name LIMIT length('SPARK');
Anil B 18
Jack N 16
John A 18
Mike A 25
Shone S 16
-- A non-literal expression as an input to LIMIT is not allowed.
SELECT name, age FROM person ORDER BY name LIMIT length(name);
Error: The limit expression must evaluate to a constant value