Mysql 对数字 IP 进行全文搜索

发布于 2024-11-26 16:41:57 字数 171 浏览 0 评论 0原文

我将 IP 作为 INT(10) 存储在 mysql 表中。我将 IP 显示为地址,用户应该能够搜索地址而不是数值。我看不出有什么方法可以告诉 MySQL 它必须执行 INET_NTOA 来进行全文搜索。有没有一种方法可以在查询中轻松做到这一点,或者我应该将 IP 存储为 char(),我不喜欢它,因为它大约比数值大 3 倍。

I stored the IP as INT(10) in a mysql table. I display the IP as a address and the user should be able to search for a address rather than a numeric value. I can't see a way to tell MySQL that it has to perform an INET_NTOA for the fulltext search. Is there a way I can easily do that within a query or should I just store the IP as char(), i don't like it since it's about 3 times larger than the numeric value.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掌心的温暖 2024-12-03 16:41:57

您应该能够执行类似的操作 -

SELECT INET_NTOA(stored_address) AS match FROM my_table
WHERE LOCATE(query, match) != 0

不过,我不一定会推荐它用于大型表 - 它最终必须转换每个存储的 IP 地址才能获得结果。

You should be able to do something like this -

SELECT INET_NTOA(stored_address) AS match FROM my_table
WHERE LOCATE(query, match) != 0

I wouldn't necessarily recommend it for a large table, though - it'll end up having to convert every single stored IP address in order to get you your results.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文