summaryrefslogtreecommitdiffstats
path: root/yql/essentials/docs/en/syntax
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-02-21 21:51:34 +0300
committervvvv <[email protected]>2025-02-21 22:33:18 +0300
commita3da80a1d278964b44086f8b500ed09bad0f165f (patch)
tree368b6985119a89ba99279100dbb8adf7f4bda951 /yql/essentials/docs/en/syntax
parent005b8a9fd31e325164fdaad9ccde51222d9dc1c7 (diff)
YQL-19129 soft WITHOUT
commit_hash:563aebc32ae87bc18e5e3e38babc034e5e89e2c1
Diffstat (limited to 'yql/essentials/docs/en/syntax')
-rw-r--r--yql/essentials/docs/en/syntax/select/without.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/yql/essentials/docs/en/syntax/select/without.md b/yql/essentials/docs/en/syntax/select/without.md
index 7f85fab3bc2..00a7e519bf6 100644
--- a/yql/essentials/docs/en/syntax/select/without.md
+++ b/yql/essentials/docs/en/syntax/select/without.md
@@ -1,11 +1,12 @@
# WITHOUT
-Excluding columns from the result of `SELECT *`.
+Excluding columns from the result of `SELECT *`. The `IF EXISTS` modifier does not throw an error for missing columns.
## Examples
```yql
SELECT * WITHOUT foo, bar FROM my_table;
+SELECT * WITHOUT IF EXISTS foo, bar FROM my_table;
```
```yql