mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5 lines
263 B
SQL
5 lines
263 B
SQL
-- { echo }
|
|
explain syntax select negate(1), negate(-1), - -1, -(-1), (-1) in (-1);
|
|
explain syntax select negate(1.), negate(-1.), - -1., -(-1.), (-1.) in (-1.);
|
|
explain syntax select negate(-9223372036854775808), -(-9223372036854775808), - -9223372036854775808;
|