Hi,
This should be a simple query but I am not able to figure out how to get the result I want. I have two tables A and B and want A left Join B however, I do not want all of table A. I want to restrict table A where table A.status="active" and B.Flag='Y'
SELECT * FROM A LEFT JOIN B ON A.ID=B.FK_ID_A - I don't know what to do after this.
Thanks!