Hello, I'm trying to figure out how to make the following sql statement work without pulling up duplicates (One record per ProductName).
SELECT tblDSProduct.ID, tblDSProduct.ProductName, tblBaseline.Phase, tblBaseline.PhaseStart, tblBaseline.PhaseFinish, tblBaseline.PhaseNotes
FROM tblDSProduct INNER JOIN tblBaseline ON tblDSProduct.ID = tblBaseline.ProductID;
I've tried DISTINCT and GROUP BY but have not been able to figure it out. Can someone help me please?
Thanks,
gogirl
SELECT tblDSProduct.ID, tblDSProduct.ProductName, tblBaseline.Phase, tblBaseline.PhaseStart, tblBaseline.PhaseFinish, tblBaseline.PhaseNotes
FROM tblDSProduct INNER JOIN tblBaseline ON tblDSProduct.ID = tblBaseline.ProductID;
I've tried DISTINCT and GROUP BY but have not been able to figure it out. Can someone help me please?
Thanks,
gogirl