Hello I am trying to create a collection with below query, i ma getting syntax error
select SMS_R_SYSTEM.ResourceID,
SMS_R_SYSTEM.ResourceType,
SMS_R_SYSTEM.Name,
SMS_R_SYSTEM.SMSUniqueIdentifier,
SMS_R_SYSTEM.ResourceDomainORWorkgroup,
SMS_R_SYSTEM.Client
from sms_r_system
inner join SMS_UpdateComplianceStatus on SMS_UpdateComplianceStatus.machineid=sms_r_system.resourceid
where SMS_UpdateComplianceStatus.LastEnforcementMessageID = 11
when i do it manually, I couldnt find attribute class for SMS_UpdateComplianceStatus. Please help
select SMS_R_SYSTEM.ResourceID,
SMS_R_SYSTEM.ResourceType,
SMS_R_SYSTEM.Name,
SMS_R_SYSTEM.SMSUniqueIdentifier,
SMS_R_SYSTEM.ResourceDomainORWorkgroup,
SMS_R_SYSTEM.Client
from sms_r_system
inner join SMS_UpdateComplianceStatus on SMS_UpdateComplianceStatus.machineid=sms_r_system.resourceid
where SMS_UpdateComplianceStatus.LastEnforcementMessageID = 11
when i do it manually, I couldnt find attribute class for SMS_UpdateComplianceStatus. Please help