АКТУАЛИЗИРАНО РЕШЕНИЕ:
SELECT UserId, First name, Last name, IsRequired, IsDeleted FROM table WHERE UserId IN (SELECT UserId FROM users GROUP BY UserId HAVING count(distinct(IsRequired)) > 1) and IsRequired = 'true'
UNION
SELECT UserId, First name, Last name, IsRequired, IsDeleted FROM table WHERE UserId IN (SELECT UserId FROM users GROUP BY UserId HAVING count(IsRequired) = 1)
Моля, вижте http://sqlfiddle.com/#!3/d178f/1/0
Възпроизведете точно същата структура на базата данни.