Replies: 1 comment
-
Hey @patcito, You can create a view for that: CREATE VIEW deposits_sum AS
SELECT sum(amount)
FROM deposits Then you can call the view through |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What would be the recommended way to do a sum query such as
select sum(amount) from deposits
?Thanks,
-Patrick
Beta Was this translation helpful? Give feedback.
All reactions