MariaDB IS_IPV4関数でIPアドレスかを判定する
環境
Windows 10 Home 64bit
MariaDB 10.6.4
構文
IS_IPV4('文字列’)
ipアドレスであるかを判定するには、「IS_IPV4()」を使用します。
IPアドレスであれば「1」を、そうでなければ「0」が返ります。
使用例
SQL構文
SELECT IS_IPV4('255.255.255.255’),IS_IPV4('255.255.255.256’),IS_IPV4('arkgame’)
実行結果
MariaDB [(none)]> SELECT IS_IPV4('255.255.255.255'),IS_IPV4('255.255.255.256'),IS_IPV4('arkgame'); +----------------------------+----------------------------+--------------------+ | IS_IPV4('255.255.255.255') | IS_IPV4('255.255.255.256') | IS_IPV4('arkgame') | +----------------------------+----------------------------+--------------------+ | 1 | 0 | 0 | +----------------------------+----------------------------+--------------------+