BUG: The ANY Keyword Does Not Return Expected ResultsLast reviewed: April 25, 1997Article ID: Q70823 |
The information in this article applies to:
BUG# OS/2: 1013 (4.2)
SYMPTOMSThe ANY keyword does not return results as expected when using a subquery that references another table.
CAUSEThe optimizer is not removing duplicates correctly.
WORKAROUNDSubstitute SELECT (min) in the subquery. For example, change the following query
SELECT loc, sum(cost) FROM test WHERE cost > ANY (SELECT b FROM t1) GROUP BY locto:
SELECT loc, sum(cost) FROM test WHERE cost > (SELECT min(b) FROM t1) GROUP BY loc STATUSMicrosoft has confirmed this to be a problem in SQL Server version 4.2 for OS/2. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
|
Additional query words: Transact-SQL
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |