BUG: SELECT w/ Correlated Subquery Can Result in Error 403ID: Q153692
|
A 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>
This 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)
SELECT t2.c1, (SELECT COUNT(DISTINCT t1.c1) FROM t1 WHERE t1.c2 =
t2.c2) FROM t2 WHERE t2.c1<>2
SELECT t2.c1, (SELECT COUNT(DISTINCT t1.c1) FROM t1 WHERE t1.c2 =
t2.c2) FROM t2 WHERE t2.c1>2
Microsoft 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.
Keywords :
Version : 6.5
Platform : WINDOWS
Issue type :
Last Reviewed: March 29, 1999