我想将两张表合并为一张表。
第一个表是图像,列是;id、item、name、path、category、sub_category、designer
第二个表是items,列是:item,description material,size,color,description
我想将两张表合并为一张表。
第一个表是图像,列是;id、item、name、path、category、sub_category、designer
第二个表是items,列是:item,description material,size,color,description
查看以下内容: http: //dev.mysql.com/doc/refman/5.0/en/insert-select.html
从网站:
INSERT INTO tbl_temp2 (fld_id)
SELECT tbl_temp1.fld_order_id
FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;