gpt4 book ai didi

MySQL查询读取IP block 中的数据?

转载 作者:行者123 更新时间:2023-11-29 01:18:38 25 4
gpt4 key购买 nike

我在 MySQL 数据库中存储了一堆数据,其中有一列名为“ip”,IP 表中的每条记录都是一个经过 INET_ATON 处理的 IPv4 地址。

例子:

enter image description here

我现在想使用匹配任何记录的 where 子句读出数据,以便 IP 解析为该范围内的内容:

10.0.0.0 - 10.0.255.255

关于如何解决这个问题有什么想法吗?

最佳答案

Select * from table where ip>=inet_Aton('10.0.0.0') and ip<=inet_aton('10.0.255.255')

关于MySQL查询读取IP block 中的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5836232/

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