数据库表主键id数据类型是String,类似111000222111这种的。今天下午进行了一下删除操作,
`select * from a_res_user where id = 12110011011610201001627614752497;
结果删除了600多条数据。。。。。还好是测试库,然后带着一万只草拟在思考这是为什么,后来感觉是MYSQL隐式转换的问题,然后就百度了一下相关的文章,大体意思是 你传入的int类型数字会以最左匹配原则匹配出对应的字符串集合作为结果集,
比如库里有7条数据 1111、1112、1113、1114,1111a、1111b、1111c
如果你输入的条件是id = 1111,结果是4条而不是1条
原因我没有深究,大概是字符串转换后用到了最左匹配原则。
具体的可以自己去试试,比较有意思,印象比较深刻
CREATE TABLE `left_cor` (
`id` varchar(12) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
insert into left_cor (id) values ('1111');
insert into left_cor (id) values ('1112');
insert into left_cor (id) values ('1113');
insert into left_cor (id) values ('1111a');
insert into left_cor (id) values ('1111b');
insert into left_cor (id) values ('1111c');
insert into left_cor (id) values ('1111d');