How can we use a WHERE clause to find records in the family table where the age is greater than, say, 40?
Nice! With age > 40, a so-called boolean expression, we only select records where the expression evaluates to TRUE.
Psst: again, the splat operator asks for every column in the record.
Didn't we say greater than?