有一张桌子,
root@localhost:[test]05:35:05>desc t;
+-----------+----------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------+----------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| studio_id | char(32) | YES | | NULL | |
+-----------+----------+------+-----+---------+----------------+
有两行:
root@localhost:[test]05:35:29>select * from t;
+----+----------------------------------+
| id | studio_id |
+----+----------------------------------+
| 1 | foo1 |
| 2 | 299a0be4a5a79e6a59fdd251b19d78bb |
+----+----------------------------------+
发现了一些奇怪的查询现象,例如:
# I can understand this
root@localhost:[test]05:37:00>select * from t where studio_id = '0';
Empty set (0.00 sec)
# I also understand this
root@localhost:[test]05:41:45>select * from t where studio_id = 1;
Empty set, 2 warnings (0.00 sec)
# but I can't understand this
root@localhost:[test]05:36:21>select * from t where studio_id = 0;
+----+-----------+
| id | studio_id |
+----+-----------+
| 1 | foo1 |
+----+-----------+
为什么可以返回记录,为什么只有foo1
返回,299a0be4a5a79e6a59fdd251b19d78bb
怎么办?
root@localhost:[test]05:38:20>select * from t where studio_id <> 0;
+----+----------------------------------+
| id | studio_id |
+----+----------------------------------+
| 2 | 299a0be4a5a79e6a59fdd251b19d78bb |
+----+----------------------------------+
答案 0 :(得分:0)
原因是mysql如何静默地将文本转换为数字以评估number = text表达式,如type conversion in expression evaluation上的mysql文档中所述。
Number =文本比较表达式通过将两个操作数转换为浮点数来计算。
通过从左到右评估字符,将文本转换为数字。只要字符可以被评估为有效数字(符号,数字,小数点等),mysql就会将其视为一个数字。转换在mysql遇到无法在数字中使用的字符(例如字母)时出现,或者会导致数字无效(例如第二个符号)。
文本'foo1'
被转换为0,因为它最左边的字符是一个字母。
文本'299a0be4a5a79e6a59fdd251b19d78bb'
转换为299,因为它以字符299开头,然后是字母a
,不能解释为数字。