Answers for "sql get elements missing in one table but present in the other"

SQL
0

how to get the elements that missing in other tables sql

SELECT A.ABC_ID, A.VAL FROM A WHERE NOT EXISTS 
   (SELECT * FROM B WHERE B.ABC_ID = A.ABC_ID AND B.VAL = A.VAL)
Posted by: Guest on February-02-2021

Code answers related to "sql get elements missing in one table but present in the other"

Code answers related to "SQL"

Browse Popular Code Answers by Language