AntiPattern
SQL Logic Misplacement and Inefficiency
sql-logic-misplacement-inefficiency
Inefficient SQL constructs place core filter/type logic in the wrong place (or replicate it across unions/limits), causing missed edge cases and slow plans—e.g., IN/EXISTS semantics, LIMIT in subqueries, window partition misunderstandings, and composite-key mismatches.