mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
Update 00633_func_or_in.sql
This commit is contained in:
parent
ce214b6663
commit
93a31a359c
@ -1,8 +1,8 @@
|
||||
drop table if exists orin_test;
|
||||
drop table if exists test.orin_test;
|
||||
|
||||
create table orin_test (c1 Int32) engine=Memory;
|
||||
insert into orin_test values(1), (100);
|
||||
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 orin_test;
|
||||
select minus(c1 = 1 or c1=2 or c1 =3, c1=5) from test.orin_test;
|
||||
|
||||
drop table orin_test;
|
||||
drop table test.orin_test;
|
||||
|
Loading…
Reference in New Issue
Block a user