mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
10 lines
236 B
SQL
10 lines
236 B
SQL
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;
|