how to insert into a table from a query

Answered how to insert into a table from a query

  • Thursday, February 14, 2013 11:40 PM
     
     

    I have two tables with identical structures.  One table has the historical records and one is the current, in use table with only a couple thousand records.

    I would like a query something like this,

    insert into myHistoricalTable (select * from recentTable where uniqueCol = 'TAS')

    But I am pretty sure I can't do this in this way.

    How might I do this? 

All Replies