Answers for "sql comparing two tabe"

SQL
4

sql compare tables

(SELECT * FROM T1 MINUS SELECT * FROM T2)   -- Rows that are in T1 but not in T2
UNION ALL
(SELECT * FROM T2 MINUS SELECT * FROM T1);  -- Rows that are in T2 but not in T1
Posted by: Guest on July-02-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language