Main
Tutorial
Manual
Miscellaneous
.limit limits the output to a number of rows.
.limit
The rows in the ResultSet after the limit is not read. Thus, the activity count reported with .limit on may not be accurate.
usage: .limit [number]
-- Limit the output to 1 row .limit 1 SELECT * FROM MyTable ORDER BY a;