Hi Ginoitalo,
Select * INTO .... copies the structure and rows from an exisiting table/given QUERY to a non exisiting target table. In this case the target table is created and should not pre-exist.
Insert INTO .... Copies only the rows from the QUERY that follows.
In this case the target table should exist(atleast the structure) to have the rows copied into.
Melvik,
Select has an INTO clause in it. With INTO, it the output of the query is destined to a table mentioned after INTO. Pls check BOL under Index "SELECT : Clauses" >> "described".
Code:
SELECT select_list
[INTO new_table_]
FROM table_source
[WHERE search_condition]
[GROUP BY group_by_expression]
[HAVING search_condition]
[ORDER BY order_expression [ASC | DESC] ]
Hope that helps.
Cheers!
_________________________
-Vijay G

Strive for Perfection
