gpt4 book ai didi

mysql - 为什么 SELECT ... WHERE last_name = 0 返回所有行?

转载 作者:可可西里 更新时间:2023-11-01 06:39:44 24 4
gpt4 key购买 nike

我在 MySQL 中有一个简单的表:

create table t_users(
user_id INT NOT NULL AUTO_INCREMENT,
first_name VARCHAR(100) NOT NULL,
last_name VARCHAR(100) NOT NULL,
PRIMARY KEY(user_id));

我很困惑地发现以下查询返回了所有行:

SELECT first_name, last_name
FROM t_users
WHERE last_name = 0;

谁能解释一下?谢谢!

最佳答案

在 MySQL 中,如果比较一个字符串和一个数字,该字符串将被转换为一个数字,每个字符串的结果为 0。和

0 = 0

是真的。

如果一个字符串以数字开头 - 比如 123abc 那么它将导致 123

SQLFiddle demo

When an operator is used with operands of different types, type conversion occurs to make the operands compatible. Some conversions occur implicitly. For example, MySQL automatically converts numbers to strings as necessary, and vice versa.

Documentation

关于mysql - 为什么 SELECT ... WHERE last_name = 0 返回所有行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30801087/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com