insert multiple data from one table to another

  • Hello.

    Hi have table 1 and table 2. I need to insert all the data from a select statement from table 1 to table 2.

    thanks in advance.

  • Here you go ,

    Insert table2

    (col1,col2......coln)

    select (col1,col2...coln)

    from table1

    with this script you can insert all rows from table1 to table2

  • thanks!!!

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply