Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two tables with the same structure.
how can I check if all the rows in these two are equal?
i.e. that each row in first table exists in the other one and vice versa.

share|improve this question

1 Answer

This is an interesting one. I'm not sure if there's a better or simpler way to do this, but something like this might work:

Assuming you have two tables, t1 and t2, and they each have two columns, c1 and c2

create view t1_counts
as select c1, c2, count(*) as num
from t1
group by c1, c2;

create view t2_counts
as select c1, c2, count(*) as num
from t2
group by c1, c2;

select t1_counts.c1, t1_counts.c2, t1_counts.num, t2_counts.num
from t1_counts full outer join t2_counts on (t1_counts.c1 = t2_counts.c1 and t1_counts.c2 = t2_counts.c2)
where t1_counts.num != t2_counts.num;

The output will be empty if the two tables are equal.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.