वैसे नहीं जैसे आपने पोस्ट किया है। आप केवल एक ही फ़ील्ड लौटा सकते हैं या IN
. के लिए टाइप कर सकते हैं काम करने के लिए।
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
. का उपयोग कर सकते हैं दो क्षेत्रों का उपयोग करना:
SELECT U.*
FROM user U
INNER JOIN userType UT
ON U.code = UT.code
AND U.userType = UT.userType