File: simple-tbls.sql

package info (click to toggle)
percona-toolkit 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 68,916 kB
  • sloc: perl: 241,287; sql: 22,868; sh: 19,746; javascript: 6,799; makefile: 353; awk: 38; python: 30; sed: 1
file content (62 lines) | stat: -rw-r--r-- 1,223 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
DROP DATABASE IF EXISTS test;
CREATE DATABASE test;
USE test;

-- InnoDB table 1
CREATE TABLE it1 (
  id int not null auto_increment primary key,
  a int not null,
  b int not null,
  c varchar(16) not null,
  key (a),
  unique key (c),
  unique key (id, c)
) ENGINE=InnoDB;

-- InnoDB table 2
CREATE TABLE it2 LIKE it1;

-- Empty InnoDB table
CREATE TABLE empty_it LIKE it1;

-- MyISAM table 1
CREATE TABLE mt1 (
  id int not null auto_increment primary key,
  a int not null,
  b int not null,
  c varchar(16) not null,
  key (a),
  unique key (c),
  unique key (id, c)
) ENGINE=MyISAM;

-- MyISAM table 2
CREATE TABLE mt2 LIKE mt1;

-- Empty MyISAM table
CREATE TABLE empty_mt LIKE mt1;

INSERT INTO it1 VALUES
  (null, 1, 1, 'one'),
  (null, 2, 2, 'two'),
  (null, 3, 3, 'three'), 
  (null, 4, 4, 'four'),
  (null, 5, 5, 'file'),
  (null, 6, 6, 'six'), 
  (null, 7, 7, 'seven'),
  (null, 8, 8, 'eight'),
  (null, 9, 9, 'nine'), 
  (null,10,10, 'ten');

INSERT INTO mt1 VALUES
  (null, 1, 1, 'one'),
  (null, 2, 2, 'two'),
  (null, 3, 3, 'three'), 
  (null, 4, 4, 'four'),
  (null, 5, 5, 'file'),
  (null, 6, 6, 'six'), 
  (null, 7, 7, 'seven'),
  (null, 8, 8, 'eight'),
  (null, 9, 9, 'nine'), 
  (null,10,10, 'ten');