trigger type 2

This commit is contained in:
2023-02-23 07:59:34 +08:00
parent 64d4e3dd9a
commit 84105347fc
16 changed files with 197 additions and 48 deletions
+8
View File
@@ -0,0 +1,8 @@
procedure one run
procedure two run
create table t(a int);
exec
create trigger a on t action one when two;
exec
insert into t(a) values (1);