MySQL 中 IS TRUE 和 =True 查询结果不一致的原因是什么?

mysql 中 is true 和 =true 查询结果不一致的原因是什么?

mysql 中 is true 和 =true 结果不一致的原因

mysql 中查询数据时,使用 is true 和 =true 作为条件会导致不同的结果。这是因为这两个操作具有不同的语义:

  • = 执行的是数值比较。true 在 mysql 中表示为 1,但 is_deleted 列是一个 tinyint(1) 类型,它的取值范围为 0-255。因此,=true 实际上是将 is_deleted 与 1 进行比较。
  • is true 执行的是真假判断。在 mysql 中,非零值都表示 true,而 0 表示 false。因此,is true 将 is_deleted 为非零(即不等于 0)的记录视为 true。

示例

已知表结构如下:

create table user (
  id int not null auto_increment,
  is_deleted tinyint(1) not null default 0,
  primary key (id)
);

插入的示例数据:

insert into user (is_deleted) values (127);
insert into user (is_deleted) values (0);

查询结果

执行以下查询语句:

select * from `user` where is_deleted is true;

结果:

+----+------------+
| id  | is_deleted |
+----+------------+
| 1   | 127        |
+----+------------+

执行以下查询语句:

select * from `user` where is_deleted = true;

结果:

空集

可见,使用 is true 查询到了 is_deleted 为 127(非 0)的记录,而使用 =true 未查询到任何记录。

以上就是MySQL 中 IS TRUE 和 =True 查询结果不一致的原因是什么?的详细内容,更多请关注其它相关文章!