mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
12 lines
219 B
SQL
12 lines
219 B
SQL
DROP DATABASE IF EXISTS test;
|
|
CREATE DATABASE test;
|
|
USE test;
|
|
CREATE TABLE t (
|
|
id INT NOT NULL PRIMARY KEY,
|
|
total DOUBLE NOT NULL
|
|
) ENGINE=InnoDB;
|
|
INSERT INTO test.t VALUES
|
|
(1, 1.23),
|
|
(2, 4.56),
|
|
(3, 7.89);
|