trigger type 2

This commit is contained in:
2023-02-24 08:19:50 +08:00
parent 84105347fc
commit 4333af07f2
6 changed files with 15 additions and 6 deletions
+4 -1
View File
@@ -1,3 +1,5 @@
#!aquery
procedure one run
procedure two run
@@ -5,4 +7,5 @@ create table t(a int);
exec
create trigger a on t action one when two;
exec
insert into t(a) values (1);
insert into t(a) values (1);
exec