SELECT amount from total_cash. if I then output t...
# cfml-beginners
f
SELECT amount from total_cash. if I then output the query and the query output $10 $34 $26 how do I add all of them up? Would I first put each query into a separate variable?
d
Select sum(amount) …
f
Thank you
👍🏾 1