Collections:
IS_IPV4() - Detecting IPv4 Address
How to detect an IPv4 Address using the IS_IPV4() function?
✍: FYIcenter.com
IS_IPV4(ip) is a MySQL built-in function that
returns 1 if the given value is a valid IPv4 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_IPV4() function:
IS_IPV4(ip): boolean
Returns 1 if and only if the argument is a valid IPv4 address.
Arguments, return value and availability:
ip: Required. The IP address to be examined.
boolean: Return value.
1 if and only if the argument is a valid IPv4 address.
Available since MySQL 4.0.
Related MySQL functions:
⇒ IS_IPV4_COMPAT() - IPv4-Compatible IPv6 Address
⇐ IS_FREE_LOCK() - Checking Lock Status
2023-12-17, 1237🔥, 0💬
Popular Posts:
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
What is dba.FYIcenter.com Website about? dba.FYIcenter.com is a Website for DBAs (database administr...
How To Locate and Take Substrings with CHARINDEX() and SUBSTRING() Functions in SQL Server Transact-...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...