如何返回AccountDescription的唯一记录?我知道如何使用distinct,但是在这种情况下我不确定如何应用它。

    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

最佳答案

我自己使用GROUP BY AccountDescription;解决了

10-06 05:12