add batch remove batch split batch comment selection show hidden batches hide batch highlight batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Table Create Table
doughnut_list CREATE TABLE `doughnut_list` (
  `doughnut_name` varchar(10) DEFAULT NULL,
  `doughnut_type` varchar(6) DEFAULT NULL,
  `id` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Incorrect table definition; there can be only one auto column and it must be defined as a key
Records: 0  Duplicates: 0  Warnings: 0
Table Create Table
doughnut_list CREATE TABLE `doughnut_list` (
  `doughnut_name` varchar(10) DEFAULT NULL,
  `doughnut_type` varchar(6) DEFAULT NULL,
  `id` int DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci