为什么我的查询获取在mysql中不匹配的记录

时间:2017-08-21 19:56:23

标签: mysql

我有以下查询

select user_address from  `user_data`  where  survey_id = '0005CA8A915C' limit 1;

,输出为:

enter image description here

如何可能5等于'0005CA8A915C'? 表示5 = '0005CA8A915C'

数据库结构

CREATE TABLE `user_data` (
  `id` int(11) NOT NULL auto_increment,
  ........
  `survey_id` bigint(20) default NULL,
 ........
  KEY `survey_id` (`survey_id`),

) ENGINE=InnoDB AUTO_INCREMENT=3509593 DEFAULT CHARSET=utf8;

0 个答案:

没有答案