mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-07 21:09:14 +00:00
11 lines
272 B
SQL
11 lines
272 B
SQL
CREATE DATABASE pt_2410;
|
|
USE pt_2410;
|
|
|
|
CREATE TABLE test(
|
|
id int not null primary key auto_increment,
|
|
column1 int default null,
|
|
column2 varchar(50) not null);
|
|
|
|
INSERT INTO test VALUES (null,null,'testing...');
|
|
INSERT INTO test VALUES (null,null,'testing...');
|