79700456

Date: 2025-07-14 05:22:39
Score: 1.5
Natty:
Report link
select "Order","Mode"
  from your_table a
where not exists(select 1
  from your_table b
where "Mode" not in ('T','I')
and b."Order"=a."Order");
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahesh Pawar