BUG: SELECT w/ Correlated Subquery Can Result in Error 403Last reviewed: April 8, 1997Article ID: Q153692 |
The information in this article applies to:
SYMPTOMSA SELECT statement that includes a correlated subquery in the select list, where the subquery performs an aggregate operation on a DISTINCT column and the outermost SELECT statement has a restriction clause of a structure more complex than <column> <relational operator> <constant>, may result in the following error:
Msg 403, Level 16, State 1 Invalid operator for datatype op: UNKNOWN TOKEN type: <type> MORE INFORMATIONThis problem is specific to the structure of the SELECT statement. If any part of the statement is altered the error will not be raised. For example, if the following tables are created:
CREATE TABLE t1 (c1 int, c2 int) CREATE TABLE t2 (c1 int, c2 int)The following select statement will demonstrate the problem:
SELECT t2.c1, (SELECT COUNT(DISTINCT t1.c1) FROM t1 WHERE t1.c2 = t2.c2) FROM t2 WHERE t2.c1<>2If the final restriction clause is changed to 'column > constant', thus:
SELECT t2.c1, (SELECT COUNT(DISTINCT t1.c1) FROM t1 WHERE t1.c2 = t2.c2) FROM t2 WHERE t2.c1>2the statement will be executed as expected. If the DISTINCT clause is removed from the subquery again, the query will execute as expected.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server version 6.50.0201. This problem has been corrected in U.S. Service Pack 1 for Microsoft SQL Server version 6.50.0201. For more information, contact your primary support provider.
|
Additional query words:
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |