Given the table below, how can I select only rows that have a unique animal?
animal age location
-------------------------
zebra 4 africa --> return this row
owl 50 america --> return this row
owl 50 u.s.a
panda 9 china --> return this row
My understanding is that the following won't work due to location
having unique rows:
SELECT DISTINCT animal, age, location FROM table