ClickHouse/dbms/tests/queries/0_stateless/00633_func_or_in.sql
2018-07-18 09:27:25 +03:00

9 lines
231 B
SQL

drop table if exists test.orin_test;
create table test.orin_test (c1 Int32) engine=Memory;
insert into test.orin_test values(1), (100);
select minus(c1 = 1 or c1=2 or c1 =3, c1=5) from test.orin_test;
drop table test.orin_test;