You can use
select min(clientID) as ClientID, Product1, Product2, Product3
from table1
Group by Product1, Product2, Product3
If you need to create a table from the select, then
select min(clientID) as ClientID, Product1, Product2, Product3
into table2
from table1
Group by Product1, Product2, Product3