Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
dan508
Engaged Sweeper
Hi all.
slowly learning SQL, and I need a bit of assistance on this one query.
I want to query all Active directory users that don't have an asset of type 909 assigned to them. To do this, I have the following script, but it isn't working 😞

select username
from tblADusers
where not exists
(select tbladusers.username
,tblAssetUserRelations.AssetID
,tblassets.Assettype

from tblADusers
inner join tblassetuserrelations on tbladusers.username=tblassetuserrelations.username
inner join tblAssets on tblAssetuserrelations.AssetID=tblAssets.AssetID
where tblassets.assettype =909
)


If I run the sub Query, it pull in all AD users that do have asset type 909 assigned to them. so shouldn't it be as simple as running a query to pull the user that aren't in the sub query?

Any help will be appreciated.

Thanks in advance ,
Dan
1 REPLY 1
endyk
Engaged Sweeper III
Hello Dan,

I think this should do it for you.

SELECT tbladusers.username,
tblAssetUserRelations.AssetID,
tblassets.Assettype
FROM tblADusers
INNER JOIN tblassetuserrelations ON tbladusers.username=tblassetuserrelations.username
INNER JOIN tblAssets ON tblAssetuserrelations.AssetID=tblAssets.AssetID
WHERE tblassets.assettype <> 909

Reports & Analytics

Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now