SELECT
blcat.rpdesc,
blbhst.bankno,
blbhst.bkname,
sum(blhst.charge)
FROM
blcat,
bldhst,
blhst,
blbhst
WHERE
blcat.bilcat = bldhst.bilcat and
bldhst.appl = blhst.appl and
bldhst.subcd = blhst.subcd and
blhst.bankno = blbhst.bankno and
blhst.seq =...
I'm a new position with a company that uses Oracle 8 after work on on SQL Server 2000 for years.
I'm working on a report where I have to sum a table field (charge) for each row and the sum will be an aggregate based on a billing code in another table. I would use a sub-query expression for...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.