场景设计,数据库如何存一个ip地址,如何设计索引和算法准确的查找一个ip与某个范围内的ip
1.创建表及相关索引
create table iptable
(
Ino int(10) PRIMARY key auto_increment,
Iadress int(10)
)
alter table iptable add index adress_index(Iadress)
insert into iptable(Iadress) VALUES (1234567890),(1234567891)
创建了一个iptable表,在Iadres