1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Example: SELECT * from users;
AST: [
Query(
Query {
with: None,
body: Select(
Select {
distinct: false,
top: None,
projection: [Wildcard],
from: [
TableWithJoins {
relation: Table {
name: ObjectName(
[
Ident {
value: "users",
quote_style: None
}
]
),
alias: None,
args: [],
with_hints: []
},
joins: []
}
],
lateral_views: [],
selection: None,
group_by: [],
cluster_by: [],
distribute_by: [],
sort_by: [],
having:
None
}
),
order_by: [],
limit: None,
offset: None,
fetch: None
}
)
]