Answer to Question #71129 in Databases | SQL | Oracle | MS Access for Justin Desouza

Question #71129
Database Systems - (Query) I have duplicate invoices and I need to combine the customer balances. How do I write the equation?
1
Expert's answer
2017-11-18T12:33:06-0500
There is a code, which delete duplicate invoices and combine all clear invoices :

delete test_outer.*
from test as test_outer
where exists(
select *
from test as test_inner
where test_inner.invoice = test_outer.invoice
group by invoice
having count(*) > 1
and min(test_inner.id) <> test_outer.id
);

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS