Ran this to select 30 records from one table.select * from tower.nbdocdeletedrecords with (nolock)where PresentDate > '2008-01-01' and presentdate < '2008-01-19' and [systemuser] = 'tower' and polnum like '00u%' and country ='50'
need to insert those 30 records into a second table EXCLUDING the first 2 and last 2 columns.. Here's a start (I think)insert into tower.nbdocselect * from tower.nbdocdeletedrecords with (nolock)where PresentDate > '2008-01-01' and presentdate < '2008-01-19' and [systemuser] = 'tower' and polnum like '00u%' and country ='50'