gpt4 book ai didi

sql - SQLite 中的条件更新

转载 作者:IT王子 更新时间:2023-10-29 06:23:09 42 4
gpt4 key购买 nike

我可以在 SQLite 中创建这样的语句吗?

update books set
(if number_of_pages > 0 then number_of_pages = number_of_pages - 1)
where book_id = 10

是否有适用的语法?

最佳答案

CASE 语句应使用以下语法:

UPDATE
books
SET number_of_page = CASE WHEN number_of_pages > 0 THEN (number_of_pages - 1) ELSE 0 END
WHERE whatever_condition

关于sql - SQLite 中的条件更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9453651/

42 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com