为什么 MySQL 的 WHERE 子句中布尔值字段比较要用字符串而不是数字?

为什么 mysql 的 where 子句中布尔值字段比较要用字符串而不是数字?

为什么 mysql 的 where 之间无法使用 = 检索布尔值?

mysql 中,where 子句中布尔值字段的比较必须使用字符串而不是数字。这是因为 enum 值(布尔值类型作为 enum 值存储)的索引是从 1 开始的,而不是从 0 开始的。

例如,在您提供的表结构中,is_svddb_match 字段是使用 'true'(1)和 'false'(0)值的 enum 类型:

create table `tmp_rt57517_20230407` (
  `video_id` int(10) unsigned not null,
  `key_id` varchar(64) not null comment 'key id from tracking website',
  `trackingwebsite_id` smallint(5) unsigned not null comment 'tracking website id',
  `is_svddb` enum('true','false') not null default 'true' comment 'filter meta by release date',
  `is_svddb_match` enum('true','false') not null default 'true' comment 'filter meta by release date',
  `match_count` int(11) default null comment '匹配到几个母本',
  primary key (`video_id`)
) engine=innodb default charset=latin1

当您使用 where 子句比较布尔值字段时,必须使用相应的字符串值。因此,要检索所有 is_svddb_match 值为 false 的行,您需要使用以下查询:

SELECT * FROM `tmp_rt57517_20230407` WHERE `is_svddb_match` = 'false';

使用数字值(例如 where is_svddb_match = 0)将不会返回任何结果。

以上就是为什么 MySQL 的 WHERE 子句中布尔值字段比较要用字符串而不是数字?的详细内容,更多请关注其它相关文章!