This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery.go
822 lines (734 loc) · 24 KB
/
query.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
package rushia
import (
"fmt"
"reflect"
"strings"
)
// Function 重現了一個像 `SHA(?)` 或 `NOW()` 的資料庫函式。
type Function struct {
query string
values []interface{}
}
// condition 是一個 `WHERE` 或 `HAVING` 的條件式。
type condition struct {
args []interface{}
connector string
}
// order 是個基於 `ORDER` 的排序資訊。
type order struct {
column string
args []interface{}
}
// join 帶有資料表格的加入資訊。
type join struct {
typ string
query string
table interface{}
condition string
conditions []condition
}
// Query 是個資料庫的 SQL 指令建置系統,同時也帶有資料庫的連線資料。
type Query struct {
// alias 是作為子指令時所帶有的別名,這會用在子指令資料表格的加入上。
alias string
// destination 呈現了資料的映射目的地指針。
destination interface{}
tableName []string
conditions []condition
havingConditions []condition
queryOptions []string
joins []join
onDuplicateColumns []string
lastInsertIDColumn string
limit []int
offset []int
orders []order
groupBy []string
lockMethod string
query string
params []interface{}
omits []string
}
//=======================================================
// 保存函式
//=======================================================
// saveJoin 會保存資料表格的加入資訊。
func (b Query) saveJoin(table interface{}, typ string, condition string) Query {
var query string
switch v := table.(type) {
// 子指令加入。
case SubQuery:
query = v.query.query
// 普通的表格加入。
case string:
query = v
}
b.joins = append(b.joins, join{
query: query,
typ: typ,
table: table,
condition: condition,
})
return b
}
// saveJoinCondition 會將資料表格的加入條件式資訊保存到指定的資料表格加入資訊中。
func (b Query) saveJoinCondition(connector string, table interface{}, args ...interface{}) Query {
var query string
switch v := table.(type) {
// 子指令條件式。
case SubQuery:
query = v.query.query
// 普通條件式。
case string:
query = v
}
var joins []join
for _, v := range b.joins {
if v.query == query {
v.conditions = append(v.conditions, condition{
args: args,
connector: connector,
})
}
joins = append(joins, v)
}
b.joins = joins
return b
}
// saveCondition 會保存欄位的查詢條件。
func (b Query) saveCondition(typ, connector string, args ...interface{}) Query {
var c condition
c.connector = connector
c.args = args
if typ == "HAVING" {
b.havingConditions = append(b.havingConditions, c)
} else {
b.conditions = append(b.conditions, c)
}
return b
}
//=======================================================
// 參數函式
//=======================================================
// bindParams 會將接收到的多個變數綁定到本次的建置工作中,並且產生、回傳相對應的 SQL 指令片段。
func (b Query) bindParams(data []interface{}) (query string) {
for _, v := range data {
query += fmt.Sprintf("%s, ", b.bindParam(v))
}
query = trim(query)
return
}
// bindParam 會將單個傳入的變數綁定到本次的建置工作中,並且依照變數型態來產生並回傳相對應的 SQL 指令片段與決定是否要以括號包覆。
func (b Query) bindParam(data interface{}, parentheses ...bool) (param string) {
switch v := data.(type) {
case SubQuery:
if len(v.query.params) > 0 {
b.params = append(b.params, v.query.params...)
}
case Function:
if len(v.values) > 0 {
b.params = append(b.params, v.values...)
}
case nil:
case Timestamp:
b.params = append(b.params, v.value)
default:
b.params = append(b.params, data)
}
param = b.paramToQuery(data, parentheses...)
return
}
// paramToQuery 會將參數的變數資料型態轉換成 SQL 指令片段,並決定是否要加上括號。
func (b Query) paramToQuery(data interface{}, parentheses ...bool) (param string) {
switch v := data.(type) {
case SubQuery:
if len(parentheses) > 0 {
if parentheses[0] == false {
param = fmt.Sprintf("%s", v.query.query)
}
} else {
param = fmt.Sprintf("(%s)", v.query.query)
}
case Function:
param = v.query
case nil:
param = "NULL"
default:
param = "?"
}
return
}
//=======================================================
// 建置函式
//=======================================================
// buildWhere 會基於目前所擁有的條件式來建置一串 `WHERE` 和 `HAVING` 的 SQL 指令。
func (b Query) buildWhere(typ string) (query string) {
var conditions []condition
if typ == "HAVING" {
conditions = b.havingConditions
query = "HAVING "
} else {
conditions = b.conditions
query = "WHERE "
}
if len(conditions) == 0 {
query = ""
return
}
query += b.buildConditions(conditions)
return
}
// buildUpdate 會建置 `UPDATE` 的 SQL 指令。
func (b Query) buildUpdate(data interface{}, skipZeroValue bool) (query string) {
var set string
beforeOptions, _ := b.buildQueryOptions()
query = fmt.Sprintf("UPDATE %s%s SET ", beforeOptions, b.tableName[0])
switch realData := data.(type) {
case map[string]interface{}:
for column, value := range realData {
if b.isOmitted(column) {
continue
}
if skipZeroValue && value == reflect.Zero(reflect.TypeOf(value)).Interface() {
continue
}
set += fmt.Sprintf("%s = %s, ", column, b.bindParam(value))
}
default:
b.rangeStruct(realData, func(column string, value interface{}) {
if b.isOmitted(column) {
return
}
if skipZeroValue && value == reflect.Zero(reflect.TypeOf(value)).Interface() {
return
}
set += fmt.Sprintf("%s = %s, ", column, b.bindParam(value))
})
}
query += fmt.Sprintf("%s ", trim(set))
return
}
// buildLimit 會建置 `LIMIT` 的 SQL 指令。
func (b Query) buildLimit() (query string) {
switch len(b.limit) {
case 0:
return
case 1:
query = fmt.Sprintf("LIMIT %d ", b.limit[0])
case 2:
query = fmt.Sprintf("LIMIT %d, %d ", b.limit[0], b.limit[1])
}
return
}
// buildOffset 會建置 `LIMIT OFFSET` 的 SQL 指令。
func (b Query) buildOffset() (query string) {
if len(b.offset) < 2 {
return
}
query = fmt.Sprintf("LIMIT %d OFFSET %d ", b.offset[0], b.offset[1])
return
}
// buildSelect 會建置 `SELECT` 的 SQL 指令。
func (b Query) buildSelect(columns ...string) (query string) {
beforeOptions, _ := b.buildQueryOptions()
if len(columns) == 0 {
query = fmt.Sprintf("SELECT %s* FROM %s ", beforeOptions, b.tableName[0])
} else {
query = fmt.Sprintf("SELECT %s%s FROM %s ", beforeOptions, strings.Join(columns, ", "), b.tableName[0])
}
return
}
// buildConditions 會將傳入的條件式轉換成指定的 `WHERE` 或 `HAVING` SQL 指令。
func (b Query) buildConditions(conditions []condition) (query string) {
for i, v := range conditions {
// 如果不是第一個條件式的話,那麼就增加連結語句。
if i != 0 {
query += fmt.Sprintf("%s ", v.connector)
}
// 取得欄位名稱的種類,有可能是個 SQL 指令或普通的欄位名稱、甚至是子指令。
var typ string
switch q := v.args[0].(type) {
case string:
if strings.Contains(q, "?") || strings.Contains(q, "(") || len(v.args) == 1 {
typ = "Query"
} else {
typ = "Column"
}
case SubQuery:
typ = "SubQuery"
}
// 基於種類來建置相對應的條件式。
switch len(v.args) {
// .Where("Column = Column")
case 1:
query += fmt.Sprintf("%s ", v.args[0].(string))
// .Where("Column = ?", "Value")
// .Where("Column", "Value")
// .Where(subQuery, "EXISTS")
case 2:
switch typ {
case "Query":
query += fmt.Sprintf("%s ", v.args[0].(string))
b.bindParam(v.args[1])
case "Column":
switch d := v.args[1].(type) {
case Timestamp:
query += fmt.Sprintf(d.query, v.args[0].(string), b.bindParam(d))
default:
query += fmt.Sprintf("%s = %s ", v.args[0].(string), b.bindParam(d))
}
case "SubQuery":
query += fmt.Sprintf("%s %s ", v.args[1].(string), b.bindParam(v.args[0]))
}
// .Where("Column", ">", "Value")
// .Where("Column", "IN", subQuery)
// .Where("Column", "IS", nil)
case 3:
if typ == "Query" {
query += fmt.Sprintf("%s ", v.args[0].(string))
b.bindParams(v.args[1:])
} else {
if v.args[1].(string) == "IN" || v.args[1].(string) == "NOT IN" {
query += fmt.Sprintf("%s %s (%s) ", v.args[0].(string), v.args[1].(string), b.bindParam(v.args[2], false))
} else {
query += fmt.Sprintf("%s %s %s ", v.args[0].(string), v.args[1].(string), b.bindParam(v.args[2]))
}
}
// .Where("(Column = ? OR Column = SHA(?))", "Value", "Value")
// .Where("Column", "BETWEEN", 1, 20)
default:
if typ == "Query" {
query += fmt.Sprintf("%s ", v.args[0].(string))
b.bindParams(v.args[1:])
} else {
switch v.args[1].(string) {
case "BETWEEN", "NOT BETWEEN":
query += fmt.Sprintf("%s %s %s AND %s ", v.args[0].(string), v.args[1].(string), b.bindParam(v.args[2]), b.bindParam(v.args[3]))
case "IN", "NOT IN":
query += fmt.Sprintf("%s %s (%s) ", v.args[0].(string), v.args[1].(string), b.bindParams(v.args[2:]))
}
}
}
}
return
}
// buildDelete 會建置 `DELETE` 的 SQL 指令。
func (b Query) buildDelete(tableNames ...string) (query string) {
beforeOptions, _ := b.buildQueryOptions()
query += fmt.Sprintf("DELETE %sFROM %s ", beforeOptions, strings.Join(tableNames, ", "))
return
}
// buildQueryOptions 依照以保存的語句選項來建置執行選項的 SQL 指令片段。
// 這會回傳兩個 SQL 指令片段,分別是放在整體 SQL 指令的前面與後面。
func (b Query) buildQueryOptions() (before string, after string) {
for _, v := range b.queryOptions {
switch v {
case "ALL", "DISTINCT", "SQL_CACHE", "SQL_NO_CACHE", "DISTINCTROW", "HIGH_PRIORITY", "STRAIGHT_JOIN", "SQL_SMALL_RESULT", "SQL_BIG_RESULT", "SQL_BUFFER_RESULT", "SQL_CALC_FOUND_ROWS", "LOW_PRIORITY", "QUICK", "IGNORE", "DELAYED":
before += fmt.Sprintf("%s, ", v)
case "FOR UPDATE", "LOCK IN SHARE MODE":
after += fmt.Sprintf("%s, ", v)
}
}
if before != "" {
before = fmt.Sprintf("%s ", trim(before))
}
if after != "" {
after = fmt.Sprintf("%s ", trim(after))
}
return
}
// buildQuery 會將所有建置工作串連起來並且依序執行來建置整個可用的 SQL 指令。
func (b Query) buildQuery() Query {
b.query += b.buildDuplicate()
b.query += b.buildJoin()
b.query += b.buildWhere("WHERE")
b.query += b.buildWhere("HAVING")
b.query += b.buildOrderBy()
b.query += b.buildGroupBy()
b.query += b.buildLimit()
b.query += b.buildOffset()
_, afterOptions := b.buildQueryOptions()
b.query += afterOptions
b.query = strings.TrimSpace(b.query)
return b
}
// buildOrderBy 會基於現有的排序資料來建置 `ORDERY BY` 的 SQL 指令。
func (b Query) buildOrderBy() (query string) {
if len(b.orders) == 0 {
return
}
query += "ORDER BY "
for _, v := range b.orders {
switch len(v.args) {
// .OrderBy("RAND()")
case 0:
query += fmt.Sprintf("%s, ", v.column)
// .OrderBy("ID", "ASC")
case 1:
query += fmt.Sprintf("%s %s, ", v.column, v.args[0])
// .OrderBy("UserGroup", "ASC", "SuperUser", "Admin")
default:
query += fmt.Sprintf("FIELD (%s, %s) %s, ", v.column, b.bindParams(v.args[1:]), v.args[0])
}
}
query = trim(query) + " "
return
}
// buildGroupBy 會建置 `GROUP BY` 的 SQL 指令。
func (b Query) buildGroupBy() (query string) {
if len(b.groupBy) == 0 {
return
}
query += "GROUP BY "
for _, v := range b.groupBy {
query += fmt.Sprintf("%s, ", v)
}
query = trim(query) + " "
return
}
// buildDuplicate 會建置 `ON DUPLICATE KEY UPDATE` 的 SQL 指令。
func (b Query) buildDuplicate() (query string) {
if len(b.onDuplicateColumns) == 0 {
return
}
query += "ON DUPLICATE KEY UPDATE "
if b.lastInsertIDColumn != "" {
query += fmt.Sprintf("%s=LAST_INSERT_ID(%s), ", b.lastInsertIDColumn, b.lastInsertIDColumn)
}
for _, v := range b.onDuplicateColumns {
query += fmt.Sprintf("%s = VALUES(%s), ", v, v)
}
query = trim(query)
return
}
// rangeStruct 會遍歷整個結構體的欄位名稱與其值。
func (b Query) rangeStruct(s interface{}, handler func(column string, value interface{})) {
t := reflect.TypeOf(s)
v := reflect.ValueOf(s)
for i := 0; i < t.NumField(); i++ {
if value, ok := t.Field(i).Tag.Lookup("rushia"); ok {
if value == "" || value == "-" {
continue
}
handler(value, v.Field(i).Interface())
} else {
handler(t.Field(i).Name, v.Field(i).Interface())
}
}
}
// isOmitted 會回傳指定欄位是否被指定為忽略。
func (b Query) isOmitted(field string) bool {
for _, v := range b.omits {
if v == field {
return true
}
}
return false
}
// buildInsert 會建置 `INSERT INTO` 的 SQL 指令。
func (b Query) buildInsert(operator string, data interface{}) (query string) {
var columns, values string
beforeOptions, _ := b.buildQueryOptions()
// 會基於資料型態建置不同的指令。
switch realData := data.(type) {
case map[string]interface{}:
for column, value := range realData {
if b.isOmitted(column) {
continue
}
columns += fmt.Sprintf("%s, ", column)
values += fmt.Sprintf("%s, ", b.bindParam(value))
}
values = fmt.Sprintf("(%s)", trim(values))
case []map[string]interface{}:
var columnNames []string
// 先取得欄位的名稱,這樣才能照順序遍歷整個 `map`。
for name := range realData[0] {
if b.isOmitted(name) {
continue
}
columnNames = append(columnNames, name)
// 先建置欄位名稱的 SQL 指令片段。
columns += fmt.Sprintf("%s, ", name)
}
for _, single := range realData {
var currentValues string
for _, name := range columnNames {
currentValues += fmt.Sprintf("%s, ", b.bindParam(single[name]))
}
values += fmt.Sprintf("(%s), ", trim(currentValues))
}
values = trim(values)
default:
b.rangeStruct(realData, func(column string, value interface{}) {
if b.isOmitted(column) {
return
}
columns += fmt.Sprintf("%s, ", column)
values += fmt.Sprintf("%s, ", b.bindParam(value))
})
values = fmt.Sprintf("(%s)", trim(values))
}
columns = trim(columns)
query = fmt.Sprintf("%s %sINTO %s (%s) VALUES %s ", operator, beforeOptions, b.tableName[0], columns, values)
return
}
// buildJoin 會建置資料表的插入 SQL 指令。
func (b Query) buildJoin() (query string) {
for _, v := range b.joins {
// 插入的種類(例如:`LEFT JOIN`、`RIGHT JOIN`、`INNER JOIN`)。
query += fmt.Sprintf("%s ", v.typ)
switch d := v.table.(type) {
// 子指令。
case SubQuery:
query += fmt.Sprintf("%s AS %s ON ", b.bindParam(d), d.query.alias)
// 資料表格名稱。
case string:
query += fmt.Sprintf("%s ON ", d)
}
if len(v.conditions) == 0 {
query += fmt.Sprintf("(%s) ", v.condition)
} else {
conditionsQuery := strings.TrimSpace(b.buildConditions(v.conditions))
query += fmt.Sprintf("(%s %s %s) ", v.condition, v.conditions[0].connector, conditionsQuery)
}
}
return
}
//=======================================================
// 執行函式
//=======================================================
// runQuery 會以 `Query` 的方式執行建置出來的 SQL 指令。
func (b Query) runQuery() (query string, params []interface{}) {
b = b.buildQuery()
query, params = b.query, b.params
return
}
//=======================================================
// 輸出函式
//=======================================================
// Table 能夠指定資料表格的名稱。
func (b Query) Table(tableName ...string) Query {
b.tableName = tableName
return b
}
//=======================================================
// 選擇函式
//=======================================================
// Select 會取得多列的資料結果,傳入的參數為欲取得的欄位名稱,不傳入參數表示取得所有欄位。
func (b Query) Select(columns ...string) (query string, params []interface{}) {
b.query = b.buildSelect(columns...)
query, params = b.runQuery()
return
}
// SelectOne 會取得僅單列的資料作為結果,傳入的參數為欲取得的欄位名稱,不傳入參數表示取得所有欄位。
// 簡單說,這就是 `.Limit(1).Select()` 的縮寫用法。
func (b Query) SelectOne(columns ...string) (query string, params []interface{}) {
query, params = b.Limit(1).Select(columns...)
return
}
// WithTotalCount 會在 SQL 執行指令中安插 `SQL_CALC_FOUND_ROWS` 選項,
// 如此一來就能夠在執行完 SQL 指令後取得查詢的總計行數。在不同情況下,這可能會拖低執行效能。
func (b Query) WithTotalCount() Query {
return b.SetQueryOption("SQL_CALC_FOUND_ROWS")
}
// Exists 會以 `SELECT EXISTS` 的方式回傳該選擇是否有任何資料傳回,其回傳值為 `1`(有)或 `0`(無)。
func (b Query) Exists() (query string, params []interface{}) {
query, params = b.Select()
query = fmt.Sprintf("SELECT EXISTS(%s)", query)
return
}
//=======================================================
// 插入函式
//=======================================================
// Insert 會插入一筆新的資料。
func (b Query) Insert(data interface{}) (query string, params []interface{}) {
b.query = b.buildInsert("INSERT", data)
query, params = b.runQuery()
return
}
// InsertMulti 會一次插入多筆資料。
func (b Query) InsertMulti(data interface{}) (query string, params []interface{}) {
b.query = b.buildInsert("INSERT", data)
query, params = b.runQuery()
return
}
// Delete 會移除相符的資料列,記得用上 `Where` 條件式來避免整個資料表格被清空。
// 這很重要好嗎,因為⋯你懂的⋯。喔,不。
func (b Query) Delete() (query string, params []interface{}) {
b.query = b.buildDelete(b.tableName...)
query, params = b.runQuery()
return
}
//=======================================================
// 更新函式
//=======================================================
// Replace 基本上和 `Insert` 無異,這會在有重複資料時移除該筆資料並重新插入。
// 若無該筆資料則插入新的資料。
func (b Query) Replace(data interface{}) (query string, params []interface{}) {
b.query = b.buildInsert("REPLACE", data)
query, params = b.runQuery()
return
}
// Update 會以指定的資料來更新相對應的資料列。
func (b Query) Update(data interface{}) (query string, params []interface{}) {
b.query = b.buildUpdate(data, false)
query, params = b.runQuery()
return
}
// Patch 會以片段更新的方式處理傳入的資料,任何零值會被忽略而不納入更新範圍。
func (b Query) Patch(data interface{}) (query string, params []interface{}) {
b.query = b.buildUpdate(data, true)
query, params = b.runQuery()
return
}
// OnDuplicate 能夠指定欲更新的欄位名稱,這會在插入的資料重複時自動更新相對應的欄位。
func (b Query) OnDuplicate(columns []string, lastInsertID ...string) Query {
b.onDuplicateColumns = columns
if len(lastInsertID) != 0 {
b.lastInsertIDColumn = lastInsertID[0]
}
return b
}
//=======================================================
// 限制函式
//=======================================================
// Omit 會省略執行時的某些欄位。
func (b Query) Omit(columns ...string) Query {
b.omits = columns
return b
}
// Limit 能夠在 SQL 查詢指令中建立限制筆數的條件。
func (b Query) Limit(from int, count ...int) Query {
if len(count) == 0 {
b.limit = []int{from}
} else {
b.limit = []int{from, count[0]}
}
return b
}
// Offset 能夠在 SQL 查詢指令中建立限制筆數的條件。
func (b Query) Offset(count int, offset int) Query {
b.offset = []int{count, offset}
return b
}
// OrderBy 會依照指定的欄位來替結果做出排序(例如:`DESC`、`ASC`)。
func (b Query) OrderBy(column string, args ...interface{}) Query {
b.orders = append(b.orders, order{
column: column,
args: args,
})
return b
}
// GroupBy 會在執行 SQL 指令時依照特定的欄位來做執行區分。
func (b Query) GroupBy(columns ...string) Query {
b.groupBy = columns
return b
}
//=======================================================
// 指令函式
//=======================================================
// RawQuery 會接收傳入的變數來執行傳入的 SQL 執行語句,變數可以在語句中以 `?`(Prepared Statements)使用來避免 SQL 注入攻擊。
// 這會將多筆資料映射到本地的建構體切片、陣列上。
func (b Query) RawQuery(q string, values ...interface{}) (query string, params []interface{}) {
b.query = q
b.params = values
query, params = b.runQuery()
return
}
//=======================================================
// 條件函式
//=======================================================
// Where 會增加一個 `WHERE AND` 條件式。
func (b Query) Where(args ...interface{}) Query {
b = b.saveCondition("WHERE", "AND", args...)
return b
}
// OrWhere 會增加一個 `WHERE OR` 條件式。
func (b Query) OrWhere(args ...interface{}) Query {
b = b.saveCondition("WHERE", "OR", args...)
return b
}
// Having 會增加一個 `HAVING AND` 條件式。
func (b Query) Having(args ...interface{}) Query {
b = b.saveCondition("HAVING", "AND", args...)
return b
}
// OrHaving 會增加一個 `HAVING OR` 條件式。
func (b Query) OrHaving(args ...interface{}) Query {
b = b.saveCondition("HAVING", "OR", args...)
return b
}
//=======================================================
// 加入函式
//=======================================================
// LeftJoin 會向左插入一個資料表格。
func (b Query) LeftJoin(table interface{}, condition string) Query {
b = b.saveJoin(table, "LEFT JOIN", condition)
return b
}
// RightJoin 會向右插入一個資料表格。
func (b Query) RightJoin(table interface{}, condition string) Query {
b = b.saveJoin(table, "RIGHT JOIN", condition)
return b
}
// InnerJoin 會內部插入一個資料表格。
func (b Query) InnerJoin(table interface{}, condition string) Query {
b = b.saveJoin(table, "INNER JOIN", condition)
return b
}
// NaturalJoin 會自然插入一個資料表格。
func (b Query) NaturalJoin(table interface{}, condition string) Query {
b = b.saveJoin(table, "NATURAL JOIN", condition)
return b
}
// JoinWhere 能夠建立一個基於 `WHERE AND` 的條件式給某個指定的插入資料表格。
func (b Query) JoinWhere(table interface{}, args ...interface{}) Query {
b = b.saveJoinCondition("AND", table, args...)
return b
}
// JoinOrWhere 能夠建立一個基於 `WHERE OR` 的條件式給某個指定的插入資料表格。
func (b Query) JoinOrWhere(table interface{}, args ...interface{}) Query {
b = b.saveJoinCondition("OR", table, args...)
return b
}
//=======================================================
// 輔助函式
//=======================================================
// SetLockMethod 會設置鎖定資料表格的方式(例如:`WRITE`、`READ`)。
func (b Query) SetLockMethod(method string) Query {
b.lockMethod = strings.ToUpper(method)
return b
}
// Lock 會以指定的上鎖方式來鎖定某個指定的資料表格,這能用以避免資料競爭問題。
func (b Query) Lock(tableNames ...string) (query string, params []interface{}) {
var tables string
for _, v := range tableNames {
tables += fmt.Sprintf("%s %s, ", v, b.lockMethod)
}
tables = trim(tables)
query, params = b.RawQuery(fmt.Sprintf("LOCK TABLES %s", tables))
return
}
// Unlock 能解鎖已鎖上的資料表格。
func (b Query) Unlock(tableNames ...string) (query string, params []interface{}) {
query, params = b.RawQuery("UNLOCK TABLES")
return
}
// SetQueryOption 會設置 SQL 指令的額外選項(例如:`SQL_NO_CACHE`)。
func (b Query) SetQueryOption(options ...string) Query {
b.queryOptions = append(b.queryOptions, options...)
return b
}
//=======================================================
// 輔助函式
//=======================================================
// trim 會清理接收到的字串,移除最後無謂的逗點與空白。
func trim(input string) (result string) {
if len(input) == 0 {
result = strings.TrimSpace(input)
} else {
result = strings.TrimSpace(input[0 : len(input)-2])
}
return
}