You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UPDATE table1 AS d INNER JOIN (
SELECT a.id FROM table1 AS a INNER JOIN table2 AS b ON a.uid = b.uid AND a.appid = b.appid
) AS sub ON d.id = sub.id SET channel = 'abcdefg'
错误信息:near "INNER": syntax error
但是我去单库上面执行就可以。
The text was updated successfully, but these errors were encountered:
UPDATE table1 AS d INNER JOIN (
SELECT a.id FROM
table1
AS a INNER JOIN table2 AS b ON a.uid
= b.uid
AND a.appid
= b.appid
) AS sub ON d.id = sub.id SET channel = 'abcdefg'
错误信息:near "INNER": syntax error
但是我去单库上面执行就可以。
The text was updated successfully, but these errors were encountered: