我创建了两个表subscription_pending和subscription_complete
subscription_complete包含
id mag1 mag2 mag3 mag4
4 100 0 100 0
subscription_pending包含
id mag1 mag2 mag3 mag4
4 100
我通过以下命令
插入值$final_q= "INSERT INTO `subscription_complete` (`id`, `mag1`, `mag2`, `mag3`, `mag4`) VALUES ('".$row_q['id']."','".$row_q['mag1']."','".$row_q['mag2']."','".$row_q['mag3']."','".$row_q['mag4']."'
我想更新subscription_complete表而不替换它的值,即为我的hvae写入以后的查询
$final_q1= "update subscription_complete set mag1='".$row_q['mag1']."',mag2='".$row_q['mag2']."',mag3='".$row_q['mag3']."',mag4='".$row_q['mag4']."' where id='".$row_q['id']."'";
你能告诉我如何在值为0的剩余列中设置100值吗?
提前谢谢!!
答案 0 :(得分:0)
这假设subscription_pending
中的空字段包含NULL
,而不是空字符串。
UPDATE subscription_complete AS c
JOIN subscription_pending AS p ON p.id = c.id
SET c.mag1 = IFNULL(p.mag1, c.mag1),
c.mag2 = IFNULL(p.mag2, c.mag2),
c.mag3 = IFNULL(p.mag3, c.mag3),
c.mag4 = IFNULL(p.mag4, c.mag4)
如果它们实际上是空字符串,请使用IF(p.magX = '', c.magX, p.magX)
代替IFNULL
测试。