hello,can u plz tell me how to use insert statement using join with a proper example.normally we use joins with select statement .
hello,can u plz tell me how to use insert statement using join with a proper example.normally we use joins with select statement .
INSERT #tmp (col1,col2) SELECT a.col1,b.col1 FROM table1 a JOIN table2 b ON (a.ID = b.ID)
Hello!
Can you please provide more information about what you want to do? What does the tables look like? What data do yu want to insert?
No one has followed this question yet.