mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
10 lines
236 B
MySQL
10 lines
236 B
MySQL
|
WITH toIPv4('127.0.0.10') AS ip
|
||
|
SELECT
|
||
|
ip = 2130706442::UInt32,
|
||
|
ip = 0::UInt32,
|
||
|
ip < 2130706443::UInt32,
|
||
|
ip > 2130706441::UInt32,
|
||
|
ip <= 2130706442::UInt32,
|
||
|
ip >= 2130706442::UInt32,
|
||
|
ip != 2130706442::UInt32;
|