【发布时间】:2021-02-27 09:08:57
【问题描述】:
我有一张这样的桌子:
create table valid_device (
id char(8) not null default '' comment 'id',
begin char(24) not null comment 'device id that is valid begin',
end char(24) comment 'device id that is valid end',
primary key (id)
) engine=innodb default charset=utf8mb4 comment='valid device';
如果我使用 CONV('AAAAAAAAAAAAAAAAAAAAAAAB', 16, 10) 会导致 bigint 溢出? 我该怎么办? 非常感谢!
【问题讨论】:
标签: mysql sql type-conversion overflow bigint