[Solved] selecting the table and some columns in another table [closed]


i think at first you should read some of the basics in SQL syntax .

As for what you asked i the syntax is like this:
Insert into yourtable1 (column1, column2 ) select column1 ,column2 from yourtable2 where yourcondition

solved selecting the table and some columns in another table [closed]