A
acss
I have a query utilizing distinct as follows:
SELECT DISTINCT Vendor.VendorCtry
FROM Vendor
ORDER BY Vendor.VendorCtry;
The problem is that when the query is run it displays a country twice like
Turkey on one row and then the next. I have tried the grouping but have the
same results, is there another way to group records?
SELECT DISTINCT Vendor.VendorCtry
FROM Vendor
ORDER BY Vendor.VendorCtry;
The problem is that when the query is run it displays a country twice like
Turkey on one row and then the next. I have tried the grouping but have the
same results, is there another way to group records?