Files
tidb/dumpling/tests/primary_key/data/pk_case_2.sql
2021-10-26 11:06:48 +08:00

15 lines
194 B
SQL

# test random order
create table `pk_case_2` (a int primary key, b int);
insert into `pk_case_2` values
(6, 4),
(4, 6),
(8, 2),
(3, 7),
(1, 9),
(2, 8),
(5, 5),
(10, 0),
(0, 10),
(9, 1),
(7, 3);