-
Notifications
You must be signed in to change notification settings - Fork 64
/
table.go
228 lines (197 loc) · 3.89 KB
/
table.go
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// Copyright 2021 ecodeclub
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eorm
type TableReference interface {
getAlias() string
}
// Table 普通表
type Table struct {
entity any
alias string
}
// TableOf 创建一个 Table 代表一个表
// alias 是指该表的别名
// 例如 SELECT * FROM user_tab AS t1,t1 就是别名
func TableOf(entity any, alias string) Table {
return Table{
entity: entity,
alias: alias,
}
}
func (t Table) getAlias() string {
return t.alias
}
// Join 查询
func (t Table) Join(right TableReference) *JoinBuilder {
return &JoinBuilder{
left: t,
right: right,
typ: "JOIN",
}
}
func (t Table) LeftJoin(right TableReference) *JoinBuilder {
return &JoinBuilder{
left: t,
right: right,
typ: "LEFT JOIN",
}
}
func (t Table) RightJoin(right TableReference) *JoinBuilder {
return &JoinBuilder{
left: t,
right: right,
typ: "RIGHT JOIN",
}
}
func (t Table) C(name string) Column {
return Column{
name: name,
table: t,
}
}
// Max represents MAX
func (t Table) Max(c string) Aggregate {
return Aggregate{
fn: "MAX",
arg: c,
table: t,
}
}
// Avg represents AVG
func (t Table) Avg(c string) Aggregate {
return Aggregate{
fn: "AVG",
arg: c,
table: t,
}
}
// Min represents MIN
func (t Table) Min(c string) Aggregate {
return Aggregate{
fn: "MIN",
arg: c,
table: t,
}
}
// Count represents COUNT
func (t Table) Count(c string) Aggregate {
return Aggregate{
fn: "COUNT",
arg: c,
table: t,
}
}
// Sum represents SUM
func (t Table) Sum(c string) Aggregate {
return Aggregate{
fn: "SUM",
arg: c,
table: t,
}
}
func (t Table) AllColumns() RawExpr {
return Raw("`" + t.alias + "`.*")
}
type Join struct {
left TableReference
right TableReference
on []Predicate
using []string
typ string
}
func (Join) getAlias() string {
return ""
}
func (j Join) Join(reference TableReference) *JoinBuilder {
return &JoinBuilder{
left: j,
right: reference,
typ: "JOIN",
}
}
func (j Join) LeftJoin(reference TableReference) *JoinBuilder {
return &JoinBuilder{
left: j,
right: reference,
typ: "LEFT JOIN",
}
}
func (j Join) RightJoin(reference TableReference) *JoinBuilder {
return &JoinBuilder{
left: j,
right: reference,
typ: "RIGHT JOIN",
}
}
type JoinBuilder struct {
left TableReference
right TableReference
typ string
}
func (j *JoinBuilder) On(ps ...Predicate) Join {
return Join{
left: j.left,
right: j.right,
typ: j.typ,
on: ps,
}
}
func (j *JoinBuilder) Using(cols ...string) Join {
return Join{
left: j.left,
right: j.right,
typ: j.typ,
using: cols,
}
}
type Subquery struct {
entity TableReference
q QueryBuilder
alias string
columns []Selectable
}
var _ TableReference = Subquery{}
func (s Subquery) getAlias() string {
return s.alias
}
func (Subquery) expr() (string, error) {
panic("implement me")
}
func (s Subquery) C(name string) Column {
return Column{
table: s.entity,
name: name,
}
}
func (s Subquery) Join(target TableReference) *JoinBuilder {
return &JoinBuilder{
left: s,
right: target,
typ: "JOIN",
}
}
func (s Subquery) LeftJoin(target TableReference) *JoinBuilder {
return &JoinBuilder{
left: s,
right: target,
typ: "LEFT JOIN",
}
}
func (s Subquery) RightJoin(target TableReference) *JoinBuilder {
return &JoinBuilder{
left: s,
right: target,
typ: "RIGHT JOIN",
}
}