C
carl
I use this Union Query...
SELECT 'Overall' As Underlying, * FROM Share_Total_BOX_Vol AND
UNION ALL Select * FROM Share_Symbol_BOX_Vol
ORDER BY OCC_Vol DESC;
I wanted to include the results of this query
SELECT Daily_Big3.OCC_Vol, Daily_Big3.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 Daily_Big3
ORDER BY OCC_Vol DESC;
I would like these results to be labled as "Big3" in Underlying firld.
I tried all sorts of ways but to no avail.
Thank you in advance.
SELECT 'Overall' As Underlying, * FROM Share_Total_BOX_Vol AND
UNION ALL Select * FROM Share_Symbol_BOX_Vol
ORDER BY OCC_Vol DESC;
I wanted to include the results of this query
SELECT Daily_Big3.OCC_Vol, Daily_Big3.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 Daily_Big3
ORDER BY OCC_Vol DESC;
I would like these results to be labled as "Big3" in Underlying firld.
I tried all sorts of ways but to no avail.
Thank you in advance.