oracle 應用開發總結(基礎篇上)

今晚任務蠻重,要把理清oracle應用開發的基本知識,現把總體知識結構歸納如下:
(1)        
        --|表的創建
               --|  create table  zmb(id int ,
                           name varchar2(20),
                           sex char(2) );
               --|  create table  zmb as select * from hxq (可加where條件);
         --|表的更改
           --| 增加列
                    alter table zmb
                          add(age  int)
                --|更改列
                    alter table zmb
                          modify(id number(10))
                --|刪除列
   
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章