...

/

Solution: Help a Pet Lover

Solution: Help a Pet Lover

We'll cover the following...

Query

SELECT name, age
FROM pets
WHERE age < 4
AND type != 'fish'
ORDER BY name ASC;

Explanation

This SQL query retrieves the names and ages of pets that are younger than 4 ...