Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with union query 1

Status
Not open for further replies.

mptwoadmin

Programmer
May 15, 2006
46
US
I have the follwoing query can someone help explain how I can get the results i need?

I get an "Invalid column name 'max_value2'" error.

Thanks


SELECT tagname, sum(max_value1-max_value2) FROM
(
select tagname, max(value) as max_value1
from analoghistory
where tagname = 'wf_lb26_dat_cray_produced'
and datetime = '2009-09-29 06:46:22.0'
group by tagname
union all
(select tagname, max(value) as max_value2
from analoghistory
where tagname = 'wf_lb26_dat_cray_produced'
and datetime <= {ts '2009-09-29 07:45:00'}
group by tagname)) c
group by max_value1, tagname;
 
try
SELECT tagname, sum(max_value) FROM
(
select tagname, max(value) as max_value
from analoghistory
where tagname = 'wf_lb26_dat_cray_produced'
and datetime = '2009-09-29 06:46:22.0'
group by tagname
union all
(select tagname, -max(value) as max_value
from analoghistory
where tagname = 'wf_lb26_dat_cray_produced'
and datetime <= {ts '2009-09-29 07:45:00'}
group by tagname)) c
group by max_value1, tagname
 
sorry SB
Code:
SELECT tagname, sum(max_value) FROM
(
select tagname, max(value) as max_value
from analoghistory
where  tagname = 'wf_lb26_dat_cray_produced'
and datetime = '2009-09-29 06:46:22.0'
group by tagname
union all
(select tagname, -max(value) as max_value
from analoghistory
where  tagname = 'wf_lb26_dat_cray_produced'
and datetime <= {ts '2009-09-29 07:45:00'} 
group by tagname)) c
group by tagname
 
PWISE - I tried your query works well but I get a negative number anyway of doing away with the "-"?

Thanks
 
how about
Code:
SELECT tagname, Abs(sum(max_value))
FROM.........
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top