Skip to content
Advertisement

How to find these master records whose totals are not accurate

I have two tables (master-details relationship). The master table has a column (called total) recording the number of details records for the same master record. Having this column is for the performance reason). Here are the table specs:

Because deletion of details records, the total in the master table may not be correct and so I would like to find these master records whose totals are not accurate. Here is the SQL I have. However, it generates zero records and I know this is not right based on the actual data.

What is the right SQL statement?

I am using MS SQL Server and database-specific statement is okay for me. However, generic statement would be better.

Advertisement

Answer

If you want to do the calculation in the where, you can. You just need only the correlated subquery rather than a group by:

EDIT:

If you want the count, then use a join and group by:

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement