I want to compare content of 15 columns in two rows. I am using db2 9 with jdbc. Can I use a sql to get a result like "match or not match"
And How can I get columns differs?
|
I want to compare content of 15 columns in two rows. I am using db2 9 with jdbc. Can I use a sql to get a result like "match or not match" And How can I get columns differs? |
|||||
|
|
You can use the EXCEPT operator to do this. In the example below, I'm using common table expressions to fetch a the single rows (assuming, in this case, that
If this returns 0 rows, then the rows are identical. If it returns a row, then the two rows differ. If you really want the result to be 'MATCH' or 'NOT MATCH':
|
|||||||
|