Some of the major relational database management systems (RDBMSs) have a LIMIT
clause that enables us to reduce the number of rows returned by a query.
The way it works is that we provide the number of rows we want to be returned by the query. We can also provide an offset to specify which row to start the count from.
Continue reading