我有两个名为order
and的表名order_product
,两个表都有一个同名的列model
,order_product
model
列有很多数据,但order
model
字段为空。
model
我想将数据从一个表复制order_product
到model
另一个表order
,我该怎么做。?
我尝试了一些 SQL 查询,但结果并不像我想要的那样,它看起来所有字段都是重复的......
INSERT INTO `order` (model) SELECT (model) FROM `order_product`