あなたが投稿した方法ではありません。 IN
に対して返すことができるフィールドまたはタイプは1つだけです。 働くために。
MSDNから( IN
):
test_expression [ NOT ] IN
( subquery | expression [ ,...n ]
)
subquery - Is a subquery that has a result set of one column.
This column must have the same data type as test_expression.
expression[ ,... n ] - Is a list of expressions to test for a match.
All expressions must be of the same type as
test_expression.
IN
の代わりに 、JOIN
を使用できます 2つのフィールドの使用:
SELECT U.*
FROM user U
INNER JOIN userType UT
ON U.code = UT.code
AND U.userType = UT.userType