Oracle
 sql >> Base de données >  >> RDS >> Oracle

T-SQL :Comment créer une table avec SELECT ?

Vous pouvez utiliser SELECT INTO . À partir de MSDN :

Donc :

SELECT col1, col2, col3 INTO newTable FROM existingTable;