SQL 關(guān)鍵字參考
SELECT DISTINCT命令在結(jié)果集中僅返回不同(有差異)的值。
以下SQL語句僅從“Customers”表的“Country”列中選擇DISTINCT值:
SELECT DISTINCT Country FROM Customers;