ale1981 Posted October 26, 2007 Share Posted October 26, 2007 Is it possible for me to combine these 2 SQL queries so I just get a combined Sales figure from both tables? SELECT SUM(SUBTOTAL) AS Sales FROM SOP30200 WHERE (CUSTNMBR = 'HLS0003') AND (SOPTYPE = 2) AND (PRSTADCD = '0012') SELECT SUM(SUBTOTAL) AS Sales FROM SOP10100 WHERE (CUSTNMBR = 'HLS0003') AND (SOPTYPE = 2) AND (PRSTADCD = '0012') Thanks in advance. Link to comment https://forums.phpfreaks.com/topic/74853-solved-combine-2-sql-queries/ Share on other sites More sharing options...
Barand Posted October 26, 2007 Share Posted October 26, 2007 perhaps SELECT SUM(x.SUBTOTAL) AS Sales FROM ( SELECT SUBTOTAL FROM SOP30200 WHERE (CUSTNMBR = 'HLS0003') AND (SOPTYPE = 2) AND (PRSTADCD = '0012') UNION ALL SELECT SUBTOTAL FROM SOP10100 WHERE (CUSTNMBR = 'HLS0003') AND (SOPTYPE = 2) AND (PRSTADCD = '0012') ) as x Link to comment https://forums.phpfreaks.com/topic/74853-solved-combine-2-sql-queries/#findComment-378492 Share on other sites More sharing options...
ale1981 Posted October 26, 2007 Author Share Posted October 26, 2007 Thanks v much, works a treat. Link to comment https://forums.phpfreaks.com/topic/74853-solved-combine-2-sql-queries/#findComment-378494 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.