Collections:
IS_IPV6() - Detecting IPv6 Address
How to detect an IPv4 Address using the IS_IPV6() function?
✍: FYIcenter.com
IS_IPV6(ip) is a MySQL built-in function that
returns 1 if the given value is a valid IPv6 address, 0 otherwise.
For example:
SELECT IS_IPV4('10.0.5.9'), IS_IPV4('10.0.5.256');
-- +---------------------+-----------------------+
-- | IS_IPV4('10.0.5.9') | IS_IPV4('10.0.5.256') |
-- +---------------------+-----------------------+
-- | 1 | 0 |
-- +---------------------+-----------------------+
Reference information of the IS_IPV6() function:
IS_IPV6(ip): boolean
Returns 1 if and only if the argument is a valid IPv6 address.
Arguments, return value and availability:
ip: Required. The IPv6 address to be examined.
boolean: Return value.
1 if and only if the argument is a valid IPv6 address.
Available since MySQL 4.0.
Related MySQL functions:
⇒ IS_USED_LOCK() - Checking Lock Owner
⇐ IS_IPV4_MAPPED() - IPv4-Mapped IPv6 Address
2026-01-24, 1423🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on CREATE, ALTER and DROP Statements in MySQL? H...
How to execute statements under given conditions in SQL Server Transact-SQL? How to use IF ... ELSE ...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
How To Fix the INSERT Command Denied Error in MySQL? The reason for getting the "1142: INSERT comman...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...