In PLSQL you can create and populate a table based on the data and structure of an existing table with one command :
Create table new as select * from original
Is there a way to do the same in TSQL?
Thanks!
Never mind -
Select * into
will do the same thing.
Edited by - rachel on 06/21/2002 2:28:12 PM