I want to insert all the numbers from tbl2 table into tbl1 table. But if tbl2.number already exist in tbl1.number then dont insert it. How to do this?
INSERT INTO tbl1 (number) SELECT tbl2.number FROM tbl2
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If it makes sense to have a unique (or primary) index for
tbl1.number, then you can useINSERT IGNORE: