是否可以在触发器内加入新/旧表

发布于 2024-10-19 04:13:05 字数 364 浏览 1 评论 0 原文

我想将传入数据(在新的虚拟表中)与 INSTEAD OF INSERT 触发器内的其他数据库表连接起来。这在 SQLite 中可能吗?

伪代码:

create trigger vTableC_OnInsert
instead of insert on vTableC
begin 

insert into tableA (column1, column2)

select
    NEW.column1,
    b.column2
from
    tableB b 
        JOIN 
    NEW n
        on b.vTableC_id = n.id

end

我尝试过,但收到此错误:“没有这样的表:main.new”。

I want to join the incoming data (in the NEW virtual table) with other database tables inside an INSTEAD OF INSERT trigger. Is this possible in SQLite?

Pseudo-ish code:

create trigger vTableC_OnInsert
instead of insert on vTableC
begin 

insert into tableA (column1, column2)

select
    NEW.column1,
    b.column2
from
    tableB b 
        JOIN 
    NEW n
        on b.vTableC_id = n.id

end

I tried, but get this error: "no such table: main.new".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

树深时见影 2024-10-26 04:13:05

我想答案是否定的,因为根据文档,SQLite 仅支持 FOR EACH ROW 触发器,因此实际上没有虚拟的 NEW 表,只有每次迭代的字段数组。

I guess the answer is no, since according to the docs SQLite only supports FOR EACH ROW triggers, so there's actually no virtual NEW table, just an array of fields from each iteration.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文