Identify the SQL query that answers: What are all the possible combinations of pets and owners?
a) SELECT FROM Pets JOIN Owners ON Pets.owner_id = Owners.id;
b) SELECT FROM Pets CROSS JOIN Owners;
c) SELECT FROM Pets WHERE Pets.owner_id = Owners.id;
d) SELECT FROM Owners JOIN Pets ON Pets.owner_id = Owners.id;