79346976

Date: 2025-01-10 20:50:15
Score: 0.5
Natty:
Report link

for a better performance, you can also use,

Select distinct t1.ID from your_table t1
where VALUE = 'TRUE'
and exists (
select 1 from your_table t2
where t1.ID = t2.ID and t2.VALUE = 'FALSE'
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bsraskr