A few command SQL script (1) Insert multiple records of Table_A to a new Table_B SELECT * INTO Table_B FROM Table_A (2) Insert multiple records of Table_A to an existing table Table_B INSERT INTO Table_B ( Col1 , Col2 , Col3 ) SELECT ColM , ColN , ColQ
Read More...