SELECT
a,
b,
c,
( SELECT d FROM t2 ) AS d
FROM
t1使用上述查询语句时,提示”Subquery is not supported in the select list”, 有同学发生过这种情况吗? 能告知是否可行?
SELECT
a,
b,
c,
( SELECT d FROM t2 ) AS d
FROM
t1使用上述查询语句时,提示”Subquery is not supported in the select list”, 有同学发生过这种情况吗? 能告知是否可行?