gpt4 book ai didi

sqlite - sqlite触发器中的条件插入语句

转载 作者:IT王子 更新时间:2023-10-29 06:18:54 28 4
gpt4 key购买 nike

sqlite 触发器是否支持条件 if/case/when 语句?

假设我有以下设置:

CREATE TABLE someTable (id INTEGER PRIMARY KEY, someValue INTEGER);
CREATE TRIGGER update_another_table AFTER INSERT ON someTable
BEGIN
IF(new.someValue==0)
DELETE FROM another_table WHERE (...some condition);
ELSE
IF NOT EXISTS(SELECT anotherValue FROM another_table WHERE anotherValue =new.someValue)
INSERT INTO another_table VALUES(new.someValue, ...);
ELSE
UPDATE another_table SET anotherValue = new.someValue;
END;

但它会引发语法错误 'IF' 附近的 Sqlite 错误:语法错误"

最佳答案

这是一个语法错误,因为 SQLite 触发器的语法图不允许任何 IF 子句或 CASE WHEN 构造。

但是您可以通过定义两个或三个使用 WHEN 条件的触发器来实现相同的效果,请参阅 http://sqlite.org/lang_createtrigger.html

因此您可以像这样为您的 DELETE 案例创建触发器:

CREATE TRIGGER delete_from_other_table AFTER INSERT ON someTable
WHEN new.someValue = 0
BEGIN
DELETE FROM anotherTable WHERE (... some condition );
END;

然后为具有适当条件的 INSERT 和 UPDATE Case 添加另一个触发器...

CREATE TRIGGER update_another_table AFTER INSERT ON someTable
WHEN new.someValue <> 0
BEGIN
...
END;

关于sqlite - sqlite触发器中的条件插入语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4608871/

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