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;