我有一个看起来像这样的表:
id
title
alias
content
parent_id
timestamp
active
level
active
默认为0。
但是我想要的是,当我插入到该表中时,插入的行active
设置为1
,而所有其他行仅在level = 2时设置为0
parent_id是一个特定的ID,例如20。
如何将其与插入物结合?
我现在的查询:
$insertnewpage = "
INSERT INTO content (title, alias, parent_id, timestamp, level)
VALUES ('title', 'alias', '20', now(), '2')";
$insertnewpagecon = $conn->query($insertnewpage);