fix style

This commit is contained in:
Blargian 2024-11-14 23:14:41 +01:00
parent 1926f6ca4a
commit af8d7c0b60

View File

@ -30,7 +30,7 @@ The condition could be any expression based on your requirements.
Additionally, `EXCEPT()` can be used to exclude columns from a result in the same table, as is possible with BigQuery (Google Cloud), using the following syntax:
```sql
SELECT column1 [, column2 ] EXCEPT(column3 [, column4])
SELECT column1 [, column2 ] EXCEPT (column3 [, column4])
FROM table1
[WHERE condition]
```