LIMIT - Restricting Results1 / 10
LIMIT limits the result to a certain number of records. To get the top 3 records of the creatures table, try:
SELECT * FROM creatures LIMIT 3;Ctrl+Enter to submit
SELECT * FROM creatures LIMIT 3;Ctrl+Enter to submit