Không phải như cách bạn đã đăng. Bạn chỉ có thể trả về một trường hoặc một loại cho IN
để làm việc.
Từ 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.
Thay vì IN
, bạn có thể sử dụng JOIN
sử dụng hai trường:
SELECT U.*
FROM user U
INNER JOIN userType UT
ON U.code = UT.code
AND U.userType = UT.userType