gpt4 book ai didi

mysql - 检测 MySQL 中 INET_ATON() 失败的行

转载 作者:行者123 更新时间:2023-11-29 15:17:48 24 4
gpt4 key购买 nike

有没有办法执行 mysql select 查询,例如:

select INET_ATON(ip_address), id from table ...

由于列中的 IP 无效而导致 INET_ATON 失败的情况?

我们在表中发现了错误的条目,现在我们想确保不再有错误的条目。

谢谢。

最佳答案

基于https://dev.mysql.com/doc/refman/8.0/en/miscellaneous-functions.html#function_inet-aton我可以看到:

INET_ATON() returns NULL if it does not understand its argument.

因此:

 select INET_ATON(ip_address) ip, id from table where ip IS NULL

应该可以解决问题。

关于mysql - 检测 MySQL 中 INET_ATON() 失败的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59567450/

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