¿Las sentencias condicionales de if/case/when son compatibles con los disparadores de sqlite?sentencia de inserción condicional en los activadores de sqlite
Let `s decir que tengo la siguiente configuración:
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;
pero se eleva un error de sintaxis Sqlite error near 'IF': syntax error"