By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
1 rows affected
1 rows affected
table_name | col_name | agg_func |
---|---|---|
Table1 | Column X | Sum |
Table2 | Column Y | Avg |
query |
---|
select Sum([Column X]) from Table1; |
select Avg([Column Y]) from Table2; |