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
@wenshao
MERGE INTO tb_xxx_test t1
USING (SELECT '1' AS aa_item_id, '2' AS mem_test_id FROM dual) t2
ON (t1.aa_item_id = t2.aa_item_id AND t1.mem_test_id = t2.mem_test_id)
WHEN NOT MATCHED THEN
INSERT aa_id, aa_item_id, gg_id, test_id
VALUES
(?,
?,
?,
?)
这里的insert后面的属性没有用小括号括起来。
The text was updated successfully, but these errors were encountered: