figured it out! had to do a left join and put my relation type criteria in there rather than in the where clause:
Left Join tsysAssetRelationTypes On tblAssetUserRelations.Type =
tsysAssetRelationTypes.RelationTypeID And tsysAssetRelationTypes.name =
'Validator'
This fixed it for me. 🙂