ClickHouse/tests/queries/0_stateless/00633_func_or_in.sql

9 lines
206 B
MySQL
Raw Normal View History

drop table if exists orin_test;
2018-07-18 04:56:51 +00:00
create table orin_test (c1 Int32) engine=Memory;
insert into orin_test values(1), (100);
2018-07-18 04:56:51 +00:00
select minus(c1 = 1 or c1=2 or c1 =3, c1=5) from orin_test;
2018-07-18 04:56:51 +00:00
drop table orin_test;