Answers for "how to get all records from one table and some records from another table in mysql"

SQL
0

get record which is available in one table but not in another mysql

SELECT  *
FROM    Call
WHERE   phone_number NOT IN (SELECT phone_number FROM Phone_book)
Posted by: Guest on October-01-2020

Code answers related to "how to get all records from one table and some records from another table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language