C
carl
I am trying to work around an issue I have.
Currently I use these 2 queries:
Q1
SELECT Query3.OCC_Vol, AS BOX_Vol, (/OCC_Vol) AS BOX, [A]/
OCC_Vol AS AMEX, [P]/OCC_Vol AS ARCA, [Z]/OCC_Vol AS BATS, [C]/OCC_Vol
AS CBOE, [W]/OCC_Vol AS C2, /OCC_Vol AS ISE, [Q]/OCC_Vol AS NOM,
[X]/OCC_Vol AS PHLX
FROM Query3
ORDER BY OCC_Vol DESC;
Which generates this output...
OCC_Vol BOX_Vol BOX AMEX
17,439,351 513,649 2.95% 13.47%
Q2
SELECT Query1.underlying, Query1.OCC_Vol, Query1.B AS BOX_Vol, (/
OCC_Vol) AS BOX, [A]/OCC_Vol AS AMEX, [P]/OCC_Vol AS ARCA, [Z]/OCC_Vol
AS BATS, [C]/OCC_Vol AS CBOE, [W]/OCC_Vol AS C2, /OCC_Vol AS ISE,
[Q]/OCC_Vol AS NOM, [X]/OCC_Vol AS PHLX
FROM Query1
ORDER BY OCC_Vol DESC;
Which generates this output...
underlying OCC_Vol BOX_Vol BOX AMEX
SPY 2,212,187 46,832 2.12% 12.01%
SLV 1,285,651 46,377 3.61% 17.26%
STX 983,631 809 0.08% 0.09%
Is there a way of changing either query (or creating a new one) that
can generate this output - taking the result of Q1 and creating the
new row named "Overall"...
underlying OCC_Vol BOX_Vol BOX AMEX
Overall 17,439,351 513,649 2.95% 13.47%
SPY 2,212,187 46,832 2.12% 12.01%
SLV 1,285,651 46,377 3.61% 17.26%
STX 983,631 809 0.08% 0.09%
Thanks in advance
Currently I use these 2 queries:
Q1
SELECT Query3.OCC_Vol, AS BOX_Vol, (/OCC_Vol) AS BOX, [A]/
OCC_Vol AS AMEX, [P]/OCC_Vol AS ARCA, [Z]/OCC_Vol AS BATS, [C]/OCC_Vol
AS CBOE, [W]/OCC_Vol AS C2, /OCC_Vol AS ISE, [Q]/OCC_Vol AS NOM,
[X]/OCC_Vol AS PHLX
FROM Query3
ORDER BY OCC_Vol DESC;
Which generates this output...
OCC_Vol BOX_Vol BOX AMEX
17,439,351 513,649 2.95% 13.47%
Q2
SELECT Query1.underlying, Query1.OCC_Vol, Query1.B AS BOX_Vol, (/
OCC_Vol) AS BOX, [A]/OCC_Vol AS AMEX, [P]/OCC_Vol AS ARCA, [Z]/OCC_Vol
AS BATS, [C]/OCC_Vol AS CBOE, [W]/OCC_Vol AS C2, /OCC_Vol AS ISE,
[Q]/OCC_Vol AS NOM, [X]/OCC_Vol AS PHLX
FROM Query1
ORDER BY OCC_Vol DESC;
Which generates this output...
underlying OCC_Vol BOX_Vol BOX AMEX
SPY 2,212,187 46,832 2.12% 12.01%
SLV 1,285,651 46,377 3.61% 17.26%
STX 983,631 809 0.08% 0.09%
Is there a way of changing either query (or creating a new one) that
can generate this output - taking the result of Q1 and creating the
new row named "Overall"...
underlying OCC_Vol BOX_Vol BOX AMEX
Overall 17,439,351 513,649 2.95% 13.47%
SPY 2,212,187 46,832 2.12% 12.01%
SLV 1,285,651 46,377 3.61% 17.26%
STX 983,631 809 0.08% 0.09%
Thanks in advance