2
select * from Auth.AspNetUserClaims where ClaimType='XYZ'
Try this query
1
SELECT * FROM Auth.Claims WHERE ClaimType.TrialStatus='active' - This query not working
If the Auth.Claims table having the TrailStatus column datatype as Boolean then use like below
SELECT * FROM Auth.Claims WHERE ClaimType.TrialStatus= 1
1
SELECT * FROM Auth.Claims WHERE ClaimType.TrialStatus='active' - This query not working