0
我有兩個表A
和B
,我想要使用列id
加入並從中創建第三個表C
。
我執行此查詢:在創建Mysql的表中創建表時出錯
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
我不知道爲什麼錯誤來了。