Jump to content

[SOLVED] Combine 2 SQL queries?


ale1981

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.