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
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
use super::*;
use crate::error::Result;
use crate::internal::{
EntityTrait, Expr, FromQueryResult, QueryFilter, QuerySelect, translate_error,
};
use crate::model::Model;
impl<M: Model> QueryBuilder<M> {
/// Add an ORDER BY clause.
pub fn order_by(
mut self,
column: impl crate::columns::IntoColumnName,
direction: Order,
) -> Self {
self.order_by
.push((column.column_name().to_string(), direction));
self
}
/// Order by ascending
pub fn order_asc(self, column: impl crate::columns::IntoColumnName) -> Self {
self.order_by(column, Order::Asc)
}
/// Order by descending
pub fn order_desc(self, column: impl crate::columns::IntoColumnName) -> Self {
self.order_by(column, Order::Desc)
}
/// Order by latest (created_at DESC)
pub fn latest(self) -> Self {
self.order_desc("created_at")
}
/// Order by oldest (created_at ASC)
pub fn oldest(self) -> Self {
self.order_asc("created_at")
}
// =========================================================================
// PAGINATION
// =========================================================================
/// Limit the number of results
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// User::query().limit(10);
/// # }
/// ```
pub fn limit(mut self, n: u64) -> Self {
self.limit_value = Some(n);
self
}
/// Skip a number of results
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// User::query().offset(20);
/// # }
/// ```
pub fn offset(mut self, n: u64) -> Self {
self.offset_value = Some(n);
self
}
/// Paginate results
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Page 3, 25 items per page
/// User::query().page(3, 25);
/// # }
/// ```
pub fn page(self, page: u64, per_page: u64) -> Self {
let offset = (page.saturating_sub(1)) * per_page;
self.limit(per_page).offset(offset)
}
/// Take only the first N records
pub fn take(self, n: u64) -> Self {
self.limit(n)
}
/// Skip the first N records
pub fn skip(self, n: u64) -> Self {
self.offset(n)
}
// =========================================================================
// SELECT
// =========================================================================
/// Select specific columns
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// User::query().select(vec!["id", "name", "email"]);
/// # }
/// ```
pub fn select(mut self, columns: Vec<&str>) -> Self {
self.select_columns = Some(columns.into_iter().map(|s| s.to_string()).collect());
self
}
/// Select columns from this table and also from a linked/joined table
///
/// This is useful for partial model queries where you want to include
/// data from related tables without loading the full models.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Select cake fields and also bakery name through a link
/// let query = Cake::query()
/// .select_with_linked(
/// vec!["id", "name"], // Local columns
/// "bakeries", // Linked table
/// "bakery_id", // Local FK
/// "id", // Remote PK
/// vec!["name as bakery_name"] // Remote columns
/// );
/// # let _ = query;
/// # }
/// ```
pub fn select_with_linked(
mut self,
local_columns: Vec<&str>,
linked_table: &str,
local_fk: &str,
remote_pk: &str,
linked_columns: Vec<&str>,
) -> Self {
// Set local columns with table prefix
let table_name = M::table_name();
let mut all_columns: Vec<String> = local_columns
.iter()
.map(|c| format!("{}.{}", table_name, c))
.collect();
// Add linked columns with table prefix
for col in linked_columns {
all_columns.push(format!("{}.{}", linked_table, col));
}
self.select_columns = Some(all_columns);
// Add the join
self.joins.push(JoinClause {
join_type: JoinType::Left,
table: linked_table.to_string(),
alias: None,
left_column: format!("{}.{}", table_name, local_fk),
right_column: format!("{}.{}", linked_table, remote_pk),
});
self
}
/// Select all columns from this table plus specific columns from a linked table
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Get all user fields plus their profile picture
/// let query = User::query()
/// .select_also_linked(
/// "profiles",
/// "id",
/// "user_id",
/// vec!["picture", "bio"]
/// );
/// # let _ = query;
/// # }
/// ```
pub fn select_also_linked(
mut self,
linked_table: &str,
local_pk: &str,
remote_fk: &str,
linked_columns: Vec<&str>,
) -> Self {
let table_name = M::table_name();
// Start with all local columns
let local_cols: Vec<String> = M::column_names()
.iter()
.map(|c| format!("{}.{}", table_name, c))
.collect();
// Add linked columns
let mut all_columns = local_cols;
for col in linked_columns {
all_columns.push(format!("{}.{}", linked_table, col));
}
self.select_columns = Some(all_columns);
// Add the join
self.joins.push(JoinClause {
join_type: JoinType::Left,
table: linked_table.to_string(),
alias: None,
left_column: format!("{}.{}", table_name, local_pk),
right_column: format!("{}.{}", linked_table, remote_fk),
});
self
}
// =========================================================================
// JOIN OPERATIONS
// =========================================================================
/// Add an INNER JOIN clause
///
/// Returns only rows with matches in both tables.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Join orders with users
/// Order::query()
/// .inner_join("users", "orders.customer_id", "users.id")
/// .get()
/// .await?;
/// # }
/// ```
pub fn inner_join(self, table: &str, left_column: &str, right_column: &str) -> Self {
self.join(JoinType::Inner, table, None, left_column, right_column)
}
/// Add an INNER JOIN clause with an alias
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// Order::query()
/// .inner_join_as("users", "customer", "orders.customer_id", "customer.id")
/// .get()
/// .await?;
/// # }
/// ```
pub fn inner_join_as(
self,
table: &str,
alias: &str,
left_column: &str,
right_column: &str,
) -> Self {
self.join(
JoinType::Inner,
table,
Some(alias),
left_column,
right_column,
)
}
/// Add a LEFT JOIN clause
///
/// Returns all rows from the left table, and matched rows from the right.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Get all users and their orders (if any)
/// User::query()
/// .left_join("orders", "users.id", "orders.customer_id")
/// .get()
/// .await?;
/// # }
/// ```
pub fn left_join(self, table: &str, left_column: &str, right_column: &str) -> Self {
self.join(JoinType::Left, table, None, left_column, right_column)
}
/// Add a LEFT JOIN clause with an alias
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// User::query()
/// .left_join_as("orders", "o", "users.id", "o.customer_id")
/// .get()
/// .await?;
/// # }
/// ```
pub fn left_join_as(
self,
table: &str,
alias: &str,
left_column: &str,
right_column: &str,
) -> Self {
self.join(
JoinType::Left,
table,
Some(alias),
left_column,
right_column,
)
}
/// Add a RIGHT JOIN clause
///
/// Returns all rows from the right table, and matched rows from the left.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Get all orders and their users
/// User::query()
/// .right_join("orders", "users.id", "orders.customer_id")
/// .get()
/// .await?;
/// # }
/// ```
pub fn right_join(self, table: &str, left_column: &str, right_column: &str) -> Self {
self.join(JoinType::Right, table, None, left_column, right_column)
}
/// Add a RIGHT JOIN clause with an alias
pub fn right_join_as(
self,
table: &str,
alias: &str,
left_column: &str,
right_column: &str,
) -> Self {
self.join(
JoinType::Right,
table,
Some(alias),
left_column,
right_column,
)
}
/// Generic join method (internal)
fn join(
mut self,
join_type: JoinType,
table: &str,
alias: Option<&str>,
left_column: &str,
right_column: &str,
) -> Self {
if let Err(reason) = Self::validate_join_clause(table, alias, left_column, right_column) {
self.invalidate_query(reason);
return self;
}
self.joins.push(JoinClause {
join_type,
table: table.to_string(),
alias: alias.map(|s| s.to_string()),
left_column: left_column.to_string(),
right_column: right_column.to_string(),
});
self
}
// =========================================================================
// AGGREGATIONS
// =========================================================================
/// Add a GROUP BY clause
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Count posts by user
/// let query = Post::query()
/// .group_by("user_id")
/// .select_raw("user_id, COUNT(*) as post_count")
/// ;
/// # let _ = query;
/// # }
/// ```
pub fn group_by(mut self, column: impl crate::columns::IntoColumnName) -> Self {
self.group_by.push(column.column_name().to_string());
self
}
/// Add multiple GROUP BY columns
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// Order::query()
/// .group_by_columns(vec!["status", "category"])
/// .get()
/// .await?;
/// # }
/// ```
pub fn group_by_columns(mut self, columns: Vec<&str>) -> Self {
for col in columns {
self.group_by.push(col.to_string());
}
self
}
/// Add a HAVING clause (raw SQL condition)
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// Post::query()
/// .group_by("user_id")
/// .having("COUNT(*) > 5")
/// .get()
/// .await?;
/// # }
/// ```
pub fn having(mut self, condition: &str) -> Self {
if let Err(reason) =
crate::query::db_sql::validate_raw_sql_fragment("HAVING raw SQL", condition)
{
self.invalidate_query(reason);
}
self.having_conditions.push(condition.to_string());
self
}
/// Add HAVING with COUNT condition
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// Post::query()
/// .group_by("user_id")
/// .having_count_gt(5)
/// .get()
/// .await?;
/// # }
/// ```
pub fn having_count_gt(self, value: i64) -> Self {
self.having(&format!("COUNT(*) > {}", value))
}
/// Add HAVING with COUNT >= condition
pub fn having_count_gte(self, value: i64) -> Self {
self.having(&format!("COUNT(*) >= {}", value))
}
/// Add HAVING with COUNT < condition
pub fn having_count_lt(self, value: i64) -> Self {
self.having(&format!("COUNT(*) < {}", value))
}
/// Add HAVING with COUNT <= condition
pub fn having_count_lte(self, value: i64) -> Self {
self.having(&format!("COUNT(*) <= {}", value))
}
/// Add HAVING with SUM condition
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// Order::query()
/// .group_by("customer_id")
/// .having_sum_gt("total", 1000.0)
/// .get()
/// .await?;
/// # }
/// ```
pub fn having_sum_gt(self, column: impl crate::columns::IntoColumnName, value: f64) -> Self {
let db_type = self.db_type_for_sql();
let col = db_sql::quote_ident(db_type, column.column_name());
self.having(&format!("SUM({}) > {}", col, value))
}
/// Add HAVING with AVG condition
pub fn having_avg_gt(self, column: impl crate::columns::IntoColumnName, value: f64) -> Self {
let db_type = self.db_type_for_sql();
let col = db_sql::quote_ident(db_type, column.column_name());
self.having(&format!("AVG({}) > {}", col, value))
}
/// Calculate SUM of a column
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let total = Order::query()
/// .where_eq("status", "completed")
/// .sum("amount")
/// .await?;
/// # let _ = total;
/// # }
/// ```
pub async fn sum(self, column: impl crate::columns::IntoColumnName) -> Result<f64> {
let db_type = self.db_type_for_sql();
let col = db_sql::quote_ident(db_type, column.column_name());
let expr = db_sql::cast_to_float(db_type, &format!("SUM({})", col));
self.aggregate_f64(&expr, "sum_result").await
}
/// Calculate AVG of a column
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let avg_price = Product::query()
/// .where_eq("category", "electronics")
/// .avg("price")
/// .await?;
/// # let _ = avg_price;
/// # }
/// ```
pub async fn avg(self, column: impl crate::columns::IntoColumnName) -> Result<f64> {
let db_type = self.db_type_for_sql();
let col = db_sql::quote_ident(db_type, column.column_name());
let expr = db_sql::cast_to_float(db_type, &format!("AVG({})", col));
self.aggregate_f64(&expr, "avg_result").await
}
/// Find MIN value of a column
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let min_price = Product::query()
/// .where_eq("in_stock", true)
/// .min("price")
/// .await?;
/// # let _ = min_price;
/// # }
/// ```
pub async fn min(self, column: impl crate::columns::IntoColumnName) -> Result<f64> {
let db_type = self.db_type_for_sql();
let col = db_sql::quote_ident(db_type, column.column_name());
let expr = db_sql::cast_to_float(db_type, &format!("MIN({})", col));
self.aggregate_f64(&expr, "min_result").await
}
/// Find MAX value of a column
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let max_price = Product::query()
/// .max("price")
/// .await?;
/// # let _ = max_price;
/// # }
/// ```
pub async fn max(self, column: impl crate::columns::IntoColumnName) -> Result<f64> {
let db_type = self.db_type_for_sql();
let col = db_sql::quote_ident(db_type, column.column_name());
let expr = db_sql::cast_to_float(db_type, &format!("MAX({})", col));
self.aggregate_f64(&expr, "max_result").await
}
/// Count distinct values of a column
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let unique_categories = Product::query()
/// .count_distinct("category")
/// .await?;
/// # let _ = unique_categories;
/// # }
/// ```
pub async fn count_distinct(self, column: impl crate::columns::IntoColumnName) -> Result<u64> {
use crate::database::Connection;
#[derive(Debug, FromQueryResult)]
struct CountResult {
count_result: i64,
}
self.ensure_query_is_valid()?;
let db_type = self.db_type_for_sql();
let col = db_sql::quote_ident(db_type, column.column_name());
let db = self.current_db()?;
let error_context = self.build_query_error_context(Some(self.build_sql_preview()));
let mut select = M::Entity::find();
// Apply WHERE conditions
if !self.conditions.is_empty() || !self.or_groups.is_empty() || M::soft_delete_enabled() {
let condition = self.build_sea_condition();
select = select.filter(condition);
}
// Build COUNT(DISTINCT column) expression
let count_expr = Expr::cust(format!("COUNT(DISTINCT {})", col));
let result: Option<CountResult> = match db.__get_connection()? {
crate::database::ConnectionRef::Database(conn) => {
crate::profiling::__profile_future(
select
.select_only()
.column_as(count_expr, "count_result")
.into_model::<CountResult>()
.one(conn.connection()),
)
.await
}
crate::database::ConnectionRef::Transaction(tx) => {
crate::profiling::__profile_future(
select
.select_only()
.column_as(count_expr, "count_result")
.into_model::<CountResult>()
.one(tx.as_ref()),
)
.await
}
}
.map_err(translate_error)
.map_err(|err| err.with_context(error_context))?;
result
.map(|r| crate::internal::count_to_u64(r.count_result, "COUNT(DISTINCT ...)"))
.transpose()
.map(|count| count.unwrap_or(0))
}
/// Internal helper for f64 aggregations
async fn aggregate_f64(self, expr_sql: &str, _alias: &str) -> Result<f64> {
use crate::database::Connection;
#[derive(Debug, FromQueryResult)]
struct AggResult {
agg_result: Option<f64>,
}
self.ensure_query_is_valid()?;
let db = self.current_db()?;
let error_context = self.build_query_error_context(Some(self.build_sql_preview()));
let mut select = M::Entity::find();
// Apply WHERE conditions
if !self.conditions.is_empty() || !self.or_groups.is_empty() || M::soft_delete_enabled() {
let condition = self.build_sea_condition();
select = select.filter(condition);
}
// Build aggregate expression
let agg_expr = Expr::cust(expr_sql.to_string());
let result: Option<AggResult> = match db.__get_connection()? {
crate::database::ConnectionRef::Database(conn) => {
crate::profiling::__profile_future(
select
.select_only()
.column_as(agg_expr, "agg_result")
.into_model::<AggResult>()
.one(conn.connection()),
)
.await
}
crate::database::ConnectionRef::Transaction(tx) => {
crate::profiling::__profile_future(
select
.select_only()
.column_as(agg_expr, "agg_result")
.into_model::<AggResult>()
.one(tx.as_ref()),
)
.await
}
}
.map_err(translate_error)
.map_err(|err| err.with_context(error_context))?;
Ok(result.and_then(|r| r.agg_result).unwrap_or(0.0))
}
// =========================================================================
// UNION OPERATIONS
// =========================================================================
/// Add a UNION with another query
///
/// UNION combines the results of two queries and removes duplicates.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Get active users combined with admin users (no duplicates)
/// let users = User::query()
/// .where_eq("active", true)
/// .union(
/// User::query().where_eq("role", "admin")
/// )
/// .get()
/// .await?;
/// # let _ = users;
/// # }
/// ```
pub fn union<N: Model>(mut self, other: QueryBuilder<N>) -> Self {
self.unions.push(UnionClause {
union_type: UnionType::Union,
query_sql: other.build_base_select_sql(),
});
self
}
/// Add a UNION ALL with another query
///
/// UNION ALL combines all results including duplicates (faster than UNION).
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Combine all orders from different status (including duplicates)
/// let orders = Order::query()
/// .where_eq("status", "pending")
/// .union_all(
/// Order::query().where_eq("status", "processing")
/// )
/// .union_all(
/// Order::query().where_eq("status", "shipped")
/// )
/// .get()
/// .await?;
/// # let _ = orders;
/// # }
/// ```
pub fn union_all<N: Model>(mut self, other: QueryBuilder<N>) -> Self {
self.unions.push(UnionClause {
union_type: UnionType::UnionAll,
query_sql: other.build_base_select_sql(),
});
self
}
/// Add a raw UNION query
///
/// Use when you need to union with a complex SQL query.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let results = User::query()
/// .where_eq("active", true)
/// .union_raw("SELECT * FROM archived_users WHERE year = 2023")
/// .get()
/// .await?;
/// # let _ = results;
/// # }
/// ```
pub fn union_raw(mut self, sql: &str) -> Self {
if let Err(reason) = crate::query::db_sql::validate_subquery_sql(sql) {
self.invalidate_query(format!("invalid subquery for union_raw(): {}", reason));
}
self.unions.push(UnionClause {
union_type: UnionType::Union,
query_sql: sql.to_string(),
});
self
}
/// Add a raw UNION ALL query
pub fn union_all_raw(mut self, sql: &str) -> Self {
if let Err(reason) = crate::query::db_sql::validate_subquery_sql(sql) {
self.invalidate_query(format!("invalid subquery for union_all_raw(): {}", reason));
}
self.unions.push(UnionClause {
union_type: UnionType::UnionAll,
query_sql: sql.to_string(),
});
self
}
// =========================================================================
// WINDOW FUNCTIONS
// =========================================================================
/// Add a window function to the SELECT clause
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Add row numbers partitioned by category
/// let query = Product::query()
/// .window(
/// WindowFunction::new(WindowFunctionType::RowNumber, "row_num")
/// .partition_by("category")
/// .order_by("price", tideorm::Order::Desc)
/// );
/// # let _ = query;
/// # }
/// ```
pub fn window(mut self, window_fn: WindowFunction) -> Self {
if let Err(reason) = Self::validate_window_function(&window_fn) {
self.invalidate_query(reason);
}
self.window_functions.push(window_fn);
self
}
/// Add ROW_NUMBER() window function
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Number rows within each category by price
/// let query = Product::query()
/// .row_number("row_num", Some("category"), "price", tideorm::Order::Desc);
/// # let _ = query;
/// # }
/// ```
pub fn row_number(
mut self,
alias: &str,
partition_by: Option<&str>,
order_by: &str,
order: Order,
) -> Self {
let mut wf =
WindowFunction::new(WindowFunctionType::RowNumber, alias).order_by(order_by, order);
if let Some(partition) = partition_by {
wf = wf.partition_by(partition);
}
self.window_functions.push(wf);
self
}
/// Add RANK() window function
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Rank employees by salary within department
/// let query = Employee::query()
/// .rank("salary_rank", Some("department_id"), "salary", tideorm::Order::Desc);
/// # let _ = query;
/// # }
/// ```
pub fn rank(
mut self,
alias: &str,
partition_by: Option<&str>,
order_by: &str,
order: Order,
) -> Self {
let mut wf = WindowFunction::new(WindowFunctionType::Rank, alias).order_by(order_by, order);
if let Some(partition) = partition_by {
wf = wf.partition_by(partition);
}
self.window_functions.push(wf);
self
}
/// Add DENSE_RANK() window function
///
/// Similar to RANK() but without gaps in ranking values.
pub fn dense_rank(
mut self,
alias: &str,
partition_by: Option<&str>,
order_by: &str,
order: Order,
) -> Self {
let mut wf =
WindowFunction::new(WindowFunctionType::DenseRank, alias).order_by(order_by, order);
if let Some(partition) = partition_by {
wf = wf.partition_by(partition);
}
self.window_functions.push(wf);
self
}
/// Add LAG() window function
///
/// Access data from a previous row.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Get previous order total for comparison
/// let query = Order::query()
/// .lag("previous_total", "total", 1, None, "customer_id", "created_at", tideorm::Order::Asc);
/// # let _ = query;
/// # }
/// ```
#[allow(clippy::too_many_arguments)]
pub fn lag(
mut self,
alias: &str,
column: &str,
offset: i32,
default: Option<&str>,
partition_by: &str,
order_by: &str,
order: Order,
) -> Self {
let wf = WindowFunction::new(
WindowFunctionType::Lag(
column.to_string(),
Some(offset),
default.map(|s| s.to_string()),
),
alias,
)
.partition_by(partition_by)
.order_by(order_by, order);
if let Err(reason) = Self::validate_window_function(&wf) {
self.invalidate_query(reason);
}
self.window_functions.push(wf);
self
}
/// Add LEAD() window function
///
/// Access data from a following row.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Get next appointment date
/// let query = Appointment::query()
/// .lead("next_date", "date", 1, None, "patient_id", "date", tideorm::Order::Asc);
/// # let _ = query;
/// # }
/// ```
#[allow(clippy::too_many_arguments)]
pub fn lead(
mut self,
alias: &str,
column: &str,
offset: i32,
default: Option<&str>,
partition_by: &str,
order_by: &str,
order: Order,
) -> Self {
let wf = WindowFunction::new(
WindowFunctionType::Lead(
column.to_string(),
Some(offset),
default.map(|s| s.to_string()),
),
alias,
)
.partition_by(partition_by)
.order_by(order_by, order);
if let Err(reason) = Self::validate_window_function(&wf) {
self.invalidate_query(reason);
}
self.window_functions.push(wf);
self
}
/// Add running SUM() window function
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Calculate running total of sales
/// let query = Sale::query()
/// .running_sum("running_total", "amount", "date", tideorm::Order::Asc);
/// # let _ = query;
/// # }
/// ```
pub fn running_sum(mut self, alias: &str, column: &str, order_by: &str, order: Order) -> Self {
let wf = WindowFunction::new(WindowFunctionType::Sum(column.to_string()), alias)
.order_by(order_by, order)
.frame(
FrameType::Rows,
FrameBound::UnboundedPreceding,
FrameBound::CurrentRow,
);
self.window_functions.push(wf);
self
}
/// Add running AVG() window function
pub fn running_avg(mut self, alias: &str, column: &str, order_by: &str, order: Order) -> Self {
let wf = WindowFunction::new(WindowFunctionType::Avg(column.to_string()), alias)
.order_by(order_by, order)
.frame(
FrameType::Rows,
FrameBound::UnboundedPreceding,
FrameBound::CurrentRow,
);
self.window_functions.push(wf);
self
}
/// Add NTILE() window function
///
/// Distribute rows into specified number of groups.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Divide products into 4 price quartiles
/// let query = Product::query()
/// .ntile("price_quartile", 4, "price", tideorm::Order::Asc);
/// # let _ = query;
/// # }
/// ```
pub fn ntile(mut self, alias: &str, buckets: u32, order_by: &str, order: Order) -> Self {
let wf = WindowFunction::new(WindowFunctionType::Ntile(buckets), alias)
.order_by(order_by, order);
self.window_functions.push(wf);
self
}
/// Add FIRST_VALUE() window function
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # fn main() {
/// // Get the first order date for each customer
/// let query = Order::query()
/// .first_value("first_order_date", "created_at", "customer_id", "created_at", tideorm::Order::Asc);
/// # let _ = query;
/// # }
/// ```
pub fn first_value(
mut self,
alias: &str,
column: &str,
partition_by: &str,
order_by: &str,
order: Order,
) -> Self {
let wf = WindowFunction::new(WindowFunctionType::FirstValue(column.to_string()), alias)
.partition_by(partition_by)
.order_by(order_by, order);
self.window_functions.push(wf);
self
}
/// Add LAST_VALUE() window function
/// Add LAST_VALUE() window function
pub fn last_value(
mut self,
alias: &str,
column: &str,
partition_by: &str,
order_by: &str,
order: Order,
) -> Self {
let wf = WindowFunction::new(WindowFunctionType::LastValue(column.to_string()), alias)
.partition_by(partition_by)
.order_by(order_by, order)
// Need to extend frame to see last value
.frame(
FrameType::Rows,
FrameBound::UnboundedPreceding,
FrameBound::UnboundedFollowing,
);
self.window_functions.push(wf);
self
}
// COMMON TABLE EXPRESSIONS (CTEs)
// =========================================================================
/// Add a CTE (WITH clause) to the query
///
/// CTEs allow you to define temporary named result sets that can be
/// referenced within the main query.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Define a CTE for high-value orders
/// let orders = Order::query()
/// .with_cte(CTE::new(
/// "high_value_orders",
/// "SELECT * FROM orders WHERE total > 1000".to_string()
/// ))
/// .where_raw("id IN (SELECT id FROM high_value_orders)")
/// .get()
/// .await?;
/// # let _ = orders;
/// # }
/// ```
pub fn with_cte(mut self, cte: CTE) -> Self {
if let Err(reason) = Self::validate_cte_clause(&cte) {
self.invalidate_query(format!("invalid CTE for with_cte(): {}", reason));
}
self.ctes.push(cte);
self
}
/// Add a CTE from another query builder
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Create CTE from a query builder
/// let active_users_query = User::query()
/// .where_eq("active", true)
/// .select(vec!["id", "name", "email"]);
///
/// let posts = Post::query()
/// .with_query("active_users", active_users_query)
/// .inner_join("active_users", "posts.user_id", "active_users.id")
/// .get()
/// .await?;
/// # let _ = posts;
/// # }
/// ```
pub fn with_query<N: Model>(mut self, name: &str, query: QueryBuilder<N>) -> Self {
if let Err(reason) = crate::query::db_sql::validate_identifier("CTE name", name) {
self.invalidate_query(reason);
}
if let Err(err) = query.ensure_query_is_valid() {
self.invalidate_query(format!("invalid subquery for with_query(): {}", err));
}
self.ctes
.push(CTE::new(name, query.build_base_select_sql()));
self
}
/// Add a CTE with column aliases
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let stats = Sale::query()
/// .with_cte_columns(
/// "daily_stats",
/// vec!["sale_date", "total_sales", "order_count"],
/// "SELECT DATE(created_at), SUM(amount), COUNT(*) FROM sales GROUP BY DATE(created_at)"
/// )
/// .where_raw("date IN (SELECT sale_date FROM daily_stats WHERE total_sales > 10000)")
/// .get()
/// .await?;
/// # let _ = stats;
/// # }
/// ```
pub fn with_cte_columns(mut self, name: &str, columns: Vec<&str>, sql: &str) -> Self {
if let Err(reason) = crate::query::db_sql::validate_identifier("CTE name", name) {
self.invalidate_query(reason);
}
for column in &columns {
if let Err(reason) = crate::query::db_sql::validate_identifier("CTE column", column) {
self.invalidate_query(reason);
break;
}
}
if let Err(reason) = crate::query::db_sql::validate_subquery_sql(sql) {
self.invalidate_query(format!(
"invalid subquery for with_cte_columns(): {}",
reason
));
}
self.ctes
.push(CTE::with_columns(name, columns, sql.to_string()));
self
}
/// Add a recursive CTE
///
/// Recursive CTEs are useful for hierarchical or tree-structured data.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Get all employees in a management hierarchy
/// let employees = Employee::query()
/// .with_recursive_cte(
/// "employee_tree",
/// vec!["id", "name", "manager_id", "level"],
/// // Base case: top-level managers
/// "SELECT id, name, manager_id, 0 FROM employees WHERE manager_id IS NULL",
/// // Recursive case: employees under managers
/// "SELECT e.id, e.name, e.manager_id, t.level + 1
/// FROM employees e
/// INNER JOIN employee_tree t ON e.manager_id = t.id"
/// )
/// .where_raw("id IN (SELECT id FROM employee_tree)")
/// .get()
/// .await?;
/// # let _ = employees;
/// # }
/// ```
pub fn with_recursive_cte(
mut self,
name: &str,
columns: Vec<&str>,
base_case: &str,
recursive_case: &str,
) -> Self {
if let Err(reason) = crate::query::db_sql::validate_identifier("CTE name", name) {
self.invalidate_query(reason);
}
for column in &columns {
if let Err(reason) = crate::query::db_sql::validate_identifier("CTE column", column) {
self.invalidate_query(reason);
break;
}
}
if let Err(reason) = crate::query::db_sql::validate_subquery_sql(base_case) {
self.invalidate_query(format!(
"invalid subquery for with_recursive_cte() base query: {}",
reason
));
}
if let Err(reason) = crate::query::db_sql::validate_subquery_sql(recursive_case) {
self.invalidate_query(format!(
"invalid subquery for with_recursive_cte() recursive query: {}",
reason
));
}
let full_sql = format!("{} UNION ALL {}", base_case, recursive_case);
let cte = CTE::with_columns(name, columns, full_sql).recursive();
self.ctes.push(cte);
self
}
// =========================================================================
// SOFT DELETE QUERIES
// =========================================================================
/// Include soft-deleted records in the query results
///
/// By default, soft-deleted records (where `deleted_at` is not NULL) are excluded.
/// Use this method to include them.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Get all users including soft-deleted ones
/// let all_users = User::query()
/// .with_trashed()
/// .get()
/// .await?;
/// # let _ = all_users;
/// # }
/// ```
pub fn with_trashed(mut self) -> Self {
self.include_trashed = true;
self.only_trashed = false;
self
}
/// Only return soft-deleted records
///
/// Returns only records where `deleted_at` is not NULL.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Get only soft-deleted users (trash bin)
/// let trashed_users = User::query()
/// .only_trashed()
/// .get()
/// .await?;
/// # let _ = trashed_users;
/// # }
/// ```
pub fn only_trashed(mut self) -> Self {
self.only_trashed = true;
self.include_trashed = false;
self
}
/// Exclude soft-deleted records (default behavior)
///
/// This is the default, but can be used to explicitly exclude soft-deleted
/// records after calling `with_trashed()`.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let active_users = User::query()
/// .without_trashed()
/// .get()
/// .await?;
/// # let _ = active_users;
/// # }
/// ```
pub fn without_trashed(mut self) -> Self {
self.include_trashed = false;
self.only_trashed = false;
self
}
// =========================================================================
// SCOPES (Reusable query fragments)
// =========================================================================
/// Apply a scope function to modify the query
///
/// Scopes are reusable query fragments that can be applied to any query.
/// This allows you to define common query patterns once and reuse them.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// // Define reusable scopes as functions
/// fn active<M: Model>(q: QueryBuilder<M>) -> QueryBuilder<M> {
/// q.where_eq("active", true)
/// }
///
/// fn recent<M: Model>(q: QueryBuilder<M>) -> QueryBuilder<M> {
/// q.order_desc("created_at").limit(10)
/// }
///
/// // Use scopes
/// let users = User::query()
/// .scope(active)
/// .scope(recent)
/// .get()
/// .await?;
/// # let _ = users;
/// # }
/// ```
pub fn scope<F>(self, f: F) -> Self
where
F: FnOnce(Self) -> Self,
{
f(self)
}
/// Apply a conditional scope
///
/// Only applies the scope function if the condition is true.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let include_inactive = false;
///
/// let users = User::query()
/// .when(include_inactive, |q| q.with_trashed())
/// .get()
/// .await?;
/// # let _ = users;
/// # }
/// ```
pub fn when<F>(self, condition: bool, f: F) -> Self
where
F: FnOnce(Self) -> Self,
{
if condition { f(self) } else { self }
}
/// Apply a scope based on an Option value
///
/// If the option is Some, applies the scope function with the value.
/// If None, returns the query unchanged.
///
/// # Example
///
/// ```rust,no_run
/// # tideorm::__doctest_prelude!();
/// # tideorm::__doctest_async! {
/// let status_filter: Option<&str> = Some("active");
///
/// let users = User::query()
/// .when_some(status_filter, |q, status| q.where_eq("status", status))
/// .get()
/// .await?;
/// # let _ = users;
/// # }
/// ```
pub fn when_some<T, F>(self, option: Option<T>, f: F) -> Self
where
F: FnOnce(Self, T) -> Self,
{
match option {
Some(value) => f(self, value),
None => self,
}
}
// =========================================================================
}