mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
13 lines
417 B
SQL
13 lines
417 B
SQL
SET compile_expressions = 1;
|
|
SET min_count_to_compile_expression = 0;
|
|
SET short_circuit_function_evaluation='enable';
|
|
|
|
DROP TABLE IF EXISTS test_table;
|
|
CREATE TABLE test_table (message String) ENGINE=TinyLog;
|
|
|
|
INSERT INTO test_table VALUES ('Test');
|
|
|
|
SELECT if(action = 'bonus', sport_amount, 0) * 100 FROM (SELECT message AS action, cast(message, 'Float64') AS sport_amount FROM test_table);
|
|
|
|
DROP TABLE test_table;
|