Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个更新触发器,
我可以在“BEGIN”和“END”之间创建一个变量,并通过 select sql 语句中的查询设置值吗?然后通过判断这个变量执行“if”“else”语句
作为嵌入式数据库,SQLite 旨在直接从另一种编程语言中使用,因此它没有变量或IF语句等编程结构。
IF
如果无法使用触发器的WHEN子句或子查询来实现您的逻辑,则必须在 Java 中执行此操作(即,没有触发器)。
WHEN