I have two tables with exactly the same structure, i.e. the same columns. I want to know the number of rows that exist in both tables, but do not have the same matching values ββfor all columns. For instance. The table shows the identifiers, name, country. The identifier is the primary key. If Id = 1 exists in both tables, then the other values ββmust also match. I am currently using this kind of statement.
SELECT COUNT(*) FROM
The table has too many columns, so it becomes too cumbersome. Is there a better way to do this?
source share