github.com/dolthub/go-mysql-server@v0.18.0/enginetest/scriptgen/setup/scripts/autoincrement (about) 1 exec 2 drop table if exists auto_increment_tbl 3 ---- 4 5 exec 6 CREATE TABLE `auto_increment_tbl` ( 7 `pk` bigint NOT NULL AUTO_INCREMENT, 8 `c0` bigint, 9 PRIMARY KEY (`pk`) 10 ) 11 ---- 12 13 exec 14 INSERT INTO auto_increment_tbl values 15 (1, 11), 16 (2, 22), 17 (3, 33) 18 ----