J
JoAnna
I need this query to only give distinct QSUserLoginName's .
The QSUser table has multiple entries for one person depending on how many
time the users profile has been updated.
I need a query that will show me everyone that has the privilege 31 but I
only want to see each user 1 time.
SELECT DISTINCT QSUser.QSUserLoginName, QSUser.QSUserFullName,
QSUser.QSUserID, QSUser.QSPrivileges, QSUser.Active
FROM QSUser
WHERE (((QSUser.QSPrivileges) Like "* 31,*") AND ((QSUser.Active)=Yes))
ORDER BY QSUser.Active;
Thank you for any help!
The QSUser table has multiple entries for one person depending on how many
time the users profile has been updated.
I need a query that will show me everyone that has the privilege 31 but I
only want to see each user 1 time.
SELECT DISTINCT QSUser.QSUserLoginName, QSUser.QSUserFullName,
QSUser.QSUserID, QSUser.QSPrivileges, QSUser.Active
FROM QSUser
WHERE (((QSUser.QSPrivileges) Like "* 31,*") AND ((QSUser.Active)=Yes))
ORDER BY QSUser.Active;
Thank you for any help!