如何返回AccountDescription
的唯一記錄?我知道如何使用distinct
,但我不確定如何在這種情況下應用它。在MySQL中選擇獨特
SELECT
Contacts.FirstName,
Contacts.LastName,
Account.AccountType,
Account.AccountDescription
FROM Contacts
INNER JOIN Account
ON Contacts.UserID = Account.AccountID
WHERE UserAccountType LIKE '%TEST%'
AND AccountType = 'trial'
基本上,我需要抓住所有的獨特AccountDescription
因爲有許多具有相同AccountDescription
接觸。
我現在有返回:
AccountType : Trial , AccountDescription : test1
AccountType : Trial , AccountDescription : test2
AccountType : Trial , AccountDescription : test1
我需要抓住的唯一AccountDescription
解決它自己沒有批評意圖,但我真的很好奇你是什麼意思 - 「知道h因爲這幾乎是最基本和最初使用的人們熟悉的。 – Uueerdo