Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Join Conditions e.g. SELECT ... T1 INNER JOIN T1 ON func(f1) = func(f2)

  • Subquery Conditions e.g. SELECT ... WHERE func(f1) IN (SELECT id FROM Table)

  • Aggregate Projections e.g. SELECT f1, func(count(*)) from t1 group by f1

  • Other places where non deterministic ordering or other considerations may complicate execution or break SQL semantics.

...