SELECT hat, cat, mat FROM seuss WHERE (hat LIKE '%sam%' OR cat LIKE '%sam%') AND (hat LIKE '%i%' OR cat LIKE '%i%') AND (hat LIKE '%am%' OR cat LIKE '%am%') OR (hat LIKE '%i do not like them in a house%' OR cat LIKE '%i do not like them in a house%');SELECT hat, cat, mat FROM seuss WHERE (hat LIKE '%sam%' OR cat LIKE '%sam%') AND (hat LIKE '%i%' OR cat LIKE '%i%') AND (hat LIKE '%am%' OR cat LIKE '%am%') OR (hat LIKE '%i do not like them in a house%' OR cat LIKE '%i do not like them in a house%');