################ 根據舊表創建新表 ################
#1 只有全表結構,沒有數據
create table stu_new like stu
#2 創建部分屬性 ,不帶結構帶數據
create table stu_new1 as select id,name from stu
#3 創建部分屬性表,不帶結構不帶數據
create table stu_new2 as select id,name from stu where 1=0
################ 刪除表 ################
#1 刪除表,只刪除數據,主鍵繼續遞增
delete from stu
#2 刪除表,只刪除數據,主鍵重新編排
truncate table stu
#3 刪除表結構及數據
drop table stu