Brilliant work! In this chapter, we've taken a closer look at clauses like WHERE, AND, OR, ORDER BY and LIMIT as well as the keywords DISTINCT and  LIKE.

So, what if we just want to see the record in the pole position of the family table?

Bingo! We've limited our result set to 1, and since the table is ordered by id by default, we got the first record!

Doesn't LIMIT only accept INT-type values?