I created a table from a Select Into command.
SELECT col1,col2,col3 INTO t_Table2 from t_Table1 where id > 23 and active = 1
I'd now like to insert more values into this table from a similar select query. I know I can accomplish adding the data by Insert Exec with a SP or a Cusor but I'm trying to keep it simple. Out of all the things I've done in SQL I've never inserted data this way. Can it be done? TIA.