How to subtract a field value total in one table from a field value in another table in Oracle

Source: Internet
Author: User

There are now two tables, a table field amount is the invoice amount, B table field Rev is the payment amount, the two tables are associated with the field ID, and you need to subtract the fields amount from table A to the field Rev of B, but the invoice represented by table A May correspond to the collection amount for multiple B tables. How to subtract the amount of table A from the number of Rev values of the corresponding B-table, and get the amount of the unpaid receivables

Select a.ID, (NVL (a.amount,0)-NVL (b.rev,0)) Result
From A,
(select B.id,sum (B.rev) REV
From b
Group BY b.ID) b
where a.id=b.id (+);

How to subtract a field value total in one table from a field value in another table in Oracle

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.