LIMIT Clause in SQLite
SQLite LIMIT Clause To limit the number of records fetched from a table, the SQLite LIMIT clause is used with the SELECT command. Syntax 1: SELECT column1, column2, column_N FROM table_name LIMIT [no of rows] Syntax 2: Using Offset SELECT column1, column2, column_N FROM table_name LIMIT [no of rows] OFFSET [row num] Example 1: TEACHERS … Read more