我有两张表,一张product_text
带有产品名称、描述和类别。另一个叫product_price
与产品selling_price
和cost_price
。
我想product_price
用通用值更新表,例如cost_price
as0.01
和selling_price
as0.01
product_price
对于表中存在的每一行,我需要以某种方式将此信息插入到表product_text
中。
例如,如果我有:
id name description category
1 example example hats
2 example2 example2 socks
在product_text
表中,我想插入:
id selling_price cost_price
1 0.01 0.01
2 0.01 0.01
到product_price
表中。
我想为一百万个项目执行此操作,因此需要一种有效的方法。
请帮忙