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. Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
ale1981 Posted October 26, 2007 Author Share Posted October 26, 2007 Thanks v much, works a treat. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.