1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| CREATE TABLE `tb_ref` ( `f1` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL, `f2` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL, `f3` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL, `f4` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL, KEY `index_tb_ref_f1` (`f1`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; ## 一定要多添 `tb_ref` 一定要多添加几条数据,如果数据太少 mysql 直接会使用全表扫描 type=ALL INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('1', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4'); INSERT INTO `tb_ref`(`f1`, `f2`, `f3`, `f4`) VALUES ('2', '2', '3', '4');
CREATE TABLE `other_table` ( `ref_f1` varchar(255) COLLATE utf8mb4_bin NOT NULL, `age` int(3) DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('1', 22, '张三'); INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('1', 23, '张1三'); INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('2', 23, '张1三'); INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('2', 23, '张1三'); INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('2', 23, '张1三'); INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('2', 23, '张1三'); INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('2', 23, '张1三'); INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('2', 23, '张1三'); INSERT INTO `other_table`(`ref_f1`, `age`, `name`) VALUES ('2', 23, '张1三');
|