0 votes
in SQLite by
What is the use of LIMIT clause with SELECT query?

1 Answer

0 votes
by

LIMIT clause is used with SELECT statement when we want a limited number of fetched records.

Syntax:

SELECT column1, column2, columnN     

FROM table_name    

LIMIT [no of rows]  

Related questions

0 votes
asked Nov 12, 2021 in SQLite by Robin
0 votes
asked Nov 12, 2021 in SQLite by Robin
...