我有 2 个表A
,B
我想使用一个列加入它们并从中id
创建第三个表C
。
我执行了这个查询:
create table C select * from ( A left join B using (id))T;
但它给出了错误:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'T' at line 1
我不知道为什么会出现错误。