Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT customerid, SUM(total) AS Grandtotal
FROM (
SELECT customerid, totaldue AS total FROM agingdetail
UNION ALL SELECT customerid, totalamount FROM aradjustment
)
GROUP BY customerid
ORDER BY customerid
SELECT customerid, SUM(total) AS Grandtotal
FROM (
SELECT customerid, totaldue AS total FROM agingdetail
UNION ALL SELECT customerid, totalamount FROM aradjustment
) [!]AS U[/!]
GROUP BY customerid
ORDER BY customerid