mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 21:51:21 +00:00
13 lines
300 B
SQL
13 lines
300 B
SQL
DROP DATABASE IF EXISTS test;
|
|
CREATE DATABASE test;
|
|
|
|
USE test;
|
|
create table t1(
|
|
id int not null auto_increment primary key,
|
|
f1 varchar(10)
|
|
);
|
|
insert into t1(f1) values('😜');
|
|
insert into t1(f1) select f1 from t1;
|
|
insert into t1(f1) select f1 from t1;
|
|
insert into t1(f1) select f1 from t1;
|