我正在做一个价格比较的事情,对于这个例子,假设我有2张桌子。 products
和cpus
。
产品是所有类别所有产品的表,其中包含产品的SKU,产品类型,最低价格,所比较的各个商店的价格,所比较的各个商店的链接以及比较了商店的商品目录编号(因此,我可以通过查看商店的商品目录编号来更新价格)。
它看起来像这样(假设我只有1家商店,我正在从中提取商品):
+------------+------+-------+---------------+-----------------+--------------------------+
| SKU | type | price | store_1_price | store_1_catalog | store_1_link |
+------------+------+-------+---------------+-----------------+--------------------------+
| 20q5ekGMLw | 1 | 1064 | 1064 | YD1600BBAEBOX | randomlink.com/linkylink |
+------------+------+-------+---------------+-----------------+--------------------------+
然后我为每个产品类别都有一个表格,在其中存储有关每个产品的更多详细规格。
例如,表 cpus (用于计算机处理器)将具有产品名称,产品SKU,cpu插槽,频率,TDP,芯数等...
可视化:
+------------------------------------+-------------+-------+-----------+-------+--------------+----------+
| name | SKU | price | frequency | cores | manufacturer | socket |
+------------------------------------+-------------+-------+-----------+-------+--------------+----------+
| i5-6600K Skylake Quad core - Tray | 20q5ekGMLw | 1064 | 3.5 | 4 | Intel | LGA-1151 |
+------------------------------------+-------------+-------+-----------+-------+--------------+----------+
现在,我想UPDATE
(如果SKU在产品中)或INSERT
(如果SKU
在数据库中)。
因此,它应该是这样的:
$checkdb= $conn->query("SELECT * FROM `products` WHERE `store_1_catalog`='".$catalog."'");
if($checkdb->num_rows==0)
{
//if product not in db,add it
}
else{ //products in database, update it.
//update price in 'cpus' table where the SKU is the same SKU whose catalog already exists in the 'products' table
}
我已经做过在数据库中找不到产品的部分,所以我必须添加它。我需要更新产品的部分是我遇到困难的地方,如何在'cpus'表中更新价格,其中SKU
是相同的{{ 1}}的目录已经存在于“产品” 表中?
答案 0 :(得分:1)
如果变量$sku
-
UPDATE cpus SET price = (SELECT price from products WHERE SKU = '$sku') WHERE SKU = '$sku';
查看您的代码,建议您执行以下操作-
$checkdb = $conn->query("SELECT * FROM `products` WHERE `store_1_catalog`='".$catalog."'");
if($checkdb->num_rows==0)
{
//if product not in db,add it
}
else{
//products in database, update it.
//update price in 'cpus' table where the SKU is the same SKU whose catalog already exists in the 'products' table
$row = $checkdb->fetch_array(MYSQLI_ASSOC);
$sku = $row["SKU"];
$conn->query("UPDATE cpus SET price = (SELECT price from products WHERE SKU = '$sku') WHERE SKU = '$sku'");
}
请注意,该代码可能会中断,因为未经测试。如果是这样,我将立即更新经过测试的代码。