I’m trying to extract the value of a table search to a variable.
var: select sum quantity from table;
select statement returns a table.
I’ve tried exec:
var: exec sum quantity from table;
but it seems this gives me the type instead of value.
how would I go about stripping the value out so that I can use the variable downstream?
Thanks!