i have two tables name called by order and order_product, both tables have a column same name model, order_product model column have lots of data, but order model empty field.
i want copy model data from table order_product to model table order, how can i do this.?
i tried some SQL query, but the result not like really what i want, its look all field will be duplicate…
INSERT INTO `order` (model) SELECT (model) FROM `order_product`
1 Answer