add batch remove batch split batch comment selection show hidden batches hide batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
version()
8.0.30
Records: 5  Duplicates: 0  Warnings: 0
Records: 5  Duplicates: 0  Warnings: 0
Table Create Table
t CREATE TABLE `t` (
  `id` int NOT NULL,
  `val` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
Rows matched: 5  Changed: 5  Warnings: 0
id val
1 1
2 1
3 1
4 1
5 1
Records: 5  Duplicates: 0  Warnings: 0
Table Create Table
t CREATE TABLE `t` (
  `id` int NOT NULL AUTO_INCREMENT,
  `val` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci