blob: 9a24ef2a3d1748e30e0e2c87755ef75a6b00af5a (
plain)
1
2
3
4
5
6
7
8
|
CREATE DATABASE mysqldump_30126;
USE mysqldump_30126;
CREATE TABLE t1 (c1 int);
DROP DATABASE mysqldump_30126;
use test;
create table t1 (a int);
create trigger tr after insert on t1 for each row set @a=1;
drop table t1;
|