mirror of
https://github.com/MariaDB/server.git
synced 2025-03-22 15:08:38 +01:00
8 lines
195 B
Text
8 lines
195 B
Text
![]() |
SET UNIQUE_CHECKS=0, FOREIGN_KEY_CHECKS=0;
|
||
|
CREATE TABLE t1 (
|
||
|
`id` int(10) unsigned NOT NULL,
|
||
|
UNIQUE KEY `id` (`id`)
|
||
|
) ENGINE=InnoDB;
|
||
|
INSERT INTO t1 SELECT seq FROM seq_1_to_65536;
|
||
|
DROP TABLE t1;
|