0

I have selected something in a table how to put what I have selected into a new table?

Select code is like:

select vwap:(sum PRICE*VOLUME)%(sum VOLUME) by SYMBOL,DATE from trade
Thomas Smyth - Treliant
  • 4,993
  • 6
  • 25
  • 36

1 Answers1

3

Save it to a variable with the : operator

newTable:select vwap:(sum PRICE*VOLUME)%(sum VOLUME) by SYMBOL,DATE from trade
MdSalih
  • 1,978
  • 10
  • 16