mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
11 lines
254 B
Text
11 lines
254 B
Text
connect con1,localhost,root,,;
|
|
create table t1 (i int);
|
|
create trigger tr after insert on t1 for each row set @b=@a;
|
|
create temporary table tmp like t1;
|
|
insert into t1 values (1);
|
|
disconnect con1;
|
|
connection default;
|
|
select * from t1;
|
|
i
|
|
1
|
|
drop table t1;
|