Changes between Version 1 and Version 2 of Ticket #35437, comment 2
- Timestamp:
- May 6, 2024, 6:46:51 PM (6 months ago)
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 employee1 Actually 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 2 2 3 3 e.g. … … 40 40 }}} 41 41 42 This appears to be a misuse of `EXISTS` here. You want to a subquery directly I suppose to achieve your purpose.42 This appears to be a misuse of `EXISTS`. You want to a subquery I suppose to achieve your purpose. 43 43 44 44 {{{#!python