您好,我正在尝试在一个查询中结合 UPDATE 和 SELECT 语句。
这是我试过的。但没有用。
$this->$db2->query('
UPDATE users
SET total = (total - (
SELECT floatingnumber
FROM posts
WHERE post_id = "'.$this->post_id.'"
LIMIT 1
))
WHERE id = "'.$this->post_user->id.'"
LIMIT 1
');