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

15 lines
203 B
SQL

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