1 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (1, 1, '1-1', '2025-01-01 01:00:00'); |
2 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (2, 1, '1-2', '2025-01-01 02:00:00'); |
3 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (3, 1, '1-3', '2025-01-01 03:00:00'); |
4 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (4, 2, '2-1', '2025-01-02 01:00:00'); |
5 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (5, 2, '2-2', '2025-01-02 02:00:00'); |
6 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (6, 2, '2-3', '2025-01-02 03:00:00'); |
7 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (7, 3, '3-1', '2025-01-03 01:00:00'); |
8 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (8, 3, '3-2', '2025-01-03 02:00:00'); |
9 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (9, 3, '3-3', '2025-01-03 03:00:00'); |
10 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (10, 4, '4-1', '2025-01-04 01:00:00'); |
11 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (11, 4, '4-2', '2025-01-04 02:00:00'); |
12 | INSERT INTO `t1` (`id`, `type`, `name`, `create_time`) VALUES (12, 4, '4-3', '2025-01-04 03:00:00'); |