Skip to content

Commit a1bbb8a

Browse files
committed
nits
1 parent bf1f8ec commit a1bbb8a

File tree

1 file changed

+1
-3
lines changed
  • docs/preview/sql/query_syntax

1 file changed

+1
-3
lines changed

docs/preview/sql/query_syntax/from.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,11 @@ SELECT sum(t.i)
119119
WHERE i % 2 = 0;
120120
```
121121

122-
### Table functions
122+
### Table Functions
123123

124124
Some functions in duckdb return entire tables rather than individual values. These functions are accordingly called _table functions_ and can be used with a `FROM` clause like regular table references.
125125
Examples include `read_csv`, `read_parquet`, `range`, `generate_series`, `repeat`, `unnest`, `glob`. For example, the previous example
126126

127-
128127
```sql
129128
SELECT *
130129
FROM 'test.csv';
@@ -147,7 +146,6 @@ FROM read_csv('test.csv') WITH ORDINALITY;
147146

148147
Note that the same result could be achieved using the `row_number` window function.
149148

150-
151149
## Joins
152150

153151
Joins are a fundamental relational operation used to connect two tables or relations horizontally.

0 commit comments

Comments
 (0)