LIMIT 명령어 사용하기

팡팡·2021년 8월 22일
0

DB

목록 보기
5/5

The LIMIT clause is used to specify the number of records to return.
The LIMIT clause is useful on large tables with thousands of records. Returning a large number of records can impact performance.

LIMIT은 쿼리 결과창에 보여주는 갯수를 제한하는 명령어이다.

SELECT column_name(s) FROM table_name WHERE condition LIMIT number;

0개의 댓글