Here's an idea...
Code:
SELECT b.borrower#, SUM (u.amount)
FROM burb u, borrower b
WHERE b.borrower# = u.borrower# AND expiration_date > 10226
GROUP BY b.borrower#
HAVING SUM (u.amount) > 10000
UNION ALL
SELECT NULL, SUM (u.amount)
FROM burb
This way, the "Total" is displayed only once and at the bottom of the list.
NOTE: You'll have to resist the temptation to do this "SELECT 'Total', SUM( u.amount )..." because when you do a UNION / UNION ALL, the column data types have to match. I'm assuming the "borrower#" is a numeric, therefore putting text in the "Total" row will give you an error.
JoeB