日常开发运维中可能会需要备份一张表,或者由一个select语句创建一张新表。
语法如下:
select * into new_table_name from s_dalx --sqlserver
----------------------------------------------------------
create table new_table_name as (select * from s_dalx) ---oracle
------------------------------------------------------------
Create table new_table_name (Select * from old_table_name); --mysql
其它数据库类型环境补充