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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
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
The output will be empty if the two tables are equal. |
|||
|
|