Given databases x, y with matching schemas:
//for all entries in x.MY_TABLE
// if PRIMARY_KEY of entry exists in y.MY_TABLE
// if {data of entry in x} doesn't match {data of matching entry in y}
// print PRIMARY_KEY
// else
// print PRIMARY_KEY
Assume that the table is a simple system with at most a 2-column primary key.