可能这很愚蠢,但我试图通过加入两个现有的表来在我的数据库中创建一个新表,这两个表都将 product_ID 作为主表和唯一表。
我试过这个但没有用
CREATE TABLE new_table_name
SELECT *
FROM table1 t1, table2 t2, WHERE t1.product_id = t2.product_id;
CREATE TABLE new_table_name
SELECT *
FROM table1 AS t1, table2 AS t2, WHERE t1.product_id = t2.product_id;