blob: b9ec8d8ced21c37a674cfa20065a6ab4f1d1cf55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
## FROM ... SELECT ... {#from-select}
An inverted format, first specifying the data source and then the operation.
#### Examples
```yql
FROM my_table SELECT key, value;
```
```yql
FROM a_table AS a
JOIN b_table AS b
USING (key)
SELECT *;
```
|