修改表結構的寫法

來源:互聯網
上載者:User

1、添加欄位
Alter table student add age number(5); 
2、修改欄位
Alter table student modify age number(10);
alter table table2 rename column result to result2;
3、刪除欄位
Alter table student drop column age;
4、清空表中資料
Truncate table student; 
正常情況下刪除資料,如果發現刪除錯了,則可以通過 rollback 復原。如果使用了截斷表,
則表示所有的資料不可恢複了.所以速度很快(更詳細的說明可查看 Oracle 體繫結構)
5、刪除表
Drop table student;
6、重新命名表
Rename student to student1;

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.