G
gz
I have a joint query:
SELECT Clients.CompID, Clients.CompName, Advertises.ItemTitle
FROM Clients INNER JOIN Advertises ON Clients.CompID = Advertises.CompID;
This query will show repeated CompID, if the CompID has more than one
Advertise.
I need to modify this query to let the CompID only show once no matter how
many Advertise it has.
How can I do this? Any help?
Thanks!
SELECT Clients.CompID, Clients.CompName, Advertises.ItemTitle
FROM Clients INNER JOIN Advertises ON Clients.CompID = Advertises.CompID;
This query will show repeated CompID, if the CompID has more than one
Advertise.
I need to modify this query to let the CompID only show once no matter how
many Advertise it has.
How can I do this? Any help?
Thanks!