Update except.md

This commit is contained in:
Tatiana Kirillova 2021-10-22 11:58:04 +03:00 committed by GitHub
parent 745b47762c
commit 3510f4cddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,23 +43,6 @@ Result:
Query:
``` sql
SELECT number FROM numbers(1,10) WHERE number > 5 EXCEPT SELECT number FROM numbers(3,6) WHERE number < 7;
```
Result:
``` text
┌─number─┐
│ 7 │
│ 8 │
│ 9 │
│ 10 │
└────────┘
```
Query:
``` sql
CREATE TABLE t1(one String, two String, three String) ENGINE=Memory();
CREATE TABLE t2(four String, five String, six String) ENGINE=Memory();
@ -83,4 +66,4 @@ Result:
**See Also**
- [UNION](union.md#union-clause)
- [INTERSECT](except.md#except-clause)
- [INTERSECT](except.md#except-clause)