I have the following
$gt_group = mysql_query("SELECT Breeders.*, Breeds.* FROM Breeders, Breeds, Xtable WHERE Xtable.BR_Group='1' AND Xtable.BR_Id=Breeds.BR_Id AND Xtable.MB_Id=Breeders.MB_Id ORDER BY Breeds.breed_Name");
It works fine except that it doesn't select the breeds that don't have a breeder assigned to them. Is there a way to modify the WHERE clause to bring all the breeds in and not just the ones that have breeders associated.
THANKS