mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
10 lines
210 B
SQL
10 lines
210 B
SQL
DROP TABLE IF EXISTS test_00688;
|
|
|
|
CREATE TABLE test_00688 (a UInt8) ENGINE = Memory;
|
|
|
|
INSERT INTO test_00688 VALUES (1), (2), (1), (3);
|
|
|
|
SELECT CASE WHEN a=1 THEN 0 END FROM test_00688;
|
|
|
|
DROP TABLE test_00688;
|