mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
15 lines
478 B
Plaintext
15 lines
478 B
Plaintext
|
-- { echoOn }
|
||
|
SELECT * FROM or_bug WHERE (key = 1) OR false OR false;
|
||
|
1
|
||
|
SELECT * FROM or_bug WHERE (key = 1) OR false;
|
||
|
1
|
||
|
SELECT * FROM or_bug WHERE (key = 1);
|
||
|
1
|
||
|
-- { echoOn }
|
||
|
select * from forms where text_field like '%this%' or 0 = 1 or 0 = 1;
|
||
|
5840ead423829c1eab29fa97 this is a test
|
||
|
select * from forms where text_field like '%this%' or 0 = 1;
|
||
|
5840ead423829c1eab29fa97 this is a test
|
||
|
select * from forms where text_field like '%this%';
|
||
|
5840ead423829c1eab29fa97 this is a test
|