mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 13:11:32 +00:00
6 lines
140 B
SQL
6 lines
140 B
SQL
USE test;
|
|
DROP TABLE IF EXISTS query_review;
|
|
DROP TABLE IF EXISTS test.n;
|
|
create table test.n(a int);
|
|
insert into test.n(a) values(1), (2);
|