I have two rather large databases (+1 million rows each). Both tables have the same structure.
How can I check if each value in a column is unique across both tables?
Is there a
SELECT COUNT(DISTINCT
col) FROM tbl
type of query that will consider BOTH tables?
Thanks!