Changes between Version 1 and Version 2 of Ticket #35437, comment 2


Ignore:
Timestamp:
May 6, 2024, 6:46:51 PM (6 months ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35437, comment 2

    v1 v2  
    1 Actually something is off in your test here. Even if the ordering is not cleared all employees will match because your reduce the number of row by employee
     1Actually something is off in your test. Even if the ordering is not cleared all employees will match because you reduce the number of rows of the subquery by employee id
    22
    33e.g.
     
    4040}}}
    4141
    42 This appears to be a misuse of `EXISTS` here. You want to a subquery directly I suppose to achieve your purpose.
     42This appears to be a misuse of `EXISTS`. You want to a subquery I suppose to achieve your purpose.
    4343
    4444{{{#!python
Back to Top