首先方法是使用RENAME關(guān)鍵字:
創(chuàng)新互聯(lián)是一家專注于網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),溫宿網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:溫宿等地區(qū)。溫宿做網(wǎng)站價(jià)格咨詢:13518219792
修改字段名:alter table 表名 rename column 現(xiàn)列名 to 新列名;
修改表名:alter table 表名 rename to 新表名
增加字段語法:alter table tablename add (column datatype [default value][null/not null],….);
說明:alter table 表名 add (字段名 字段類型 默認(rèn)值 是否為空);
例:alter table sf_users add (HeadPIC blob);
例:alter table?sf_users add (userName varchar2(30) default?'空' not null);
修改字段的語法:alter table tablename modify (column datatype [default value][null/not null],….);
說明:alter table 表名 modify (字段名 字段類型?默認(rèn)值 是否為空);
例:alter table sf_InvoiceApply modify (BILLCODE number(4));
刪除字段的語法:alter table tablename drop (column);
說明:alter table 表名 drop column 字段名;
例:alter table sf_users drop column HeadPIC;
字段的重命名:
說明:alter table 表名 rename ?column? 列名 to 新列名?? (其中:column是關(guān)鍵字)
例:alter table sf_InvoiceApply rename column PIC to NEWPIC;
表的重命名:
說明:alter table 表名 rename to? 新表名
例:alter table?sf_InvoiceApply rename to??sf_New_InvoiceApply;
1、創(chuàng)建表:
CREATE TABLE Student(
id varchar2(32) primary key,
name varchar2(8) not null,
age number
);
2、修改字段名:
alter table Student rename name to StuName;
3、修改數(shù)據(jù)類型:
alter table Student modify (id varchar2(64));
Oracle數(shù)據(jù)庫介紹:
Oracle Database,又名Oracle RDBMS,或簡稱Oracle。是甲骨文公司的一款關(guān)系數(shù)據(jù)庫管理系統(tǒng)。它是在數(shù)據(jù)庫領(lǐng)域一直處于領(lǐng)先地位的產(chǎn)品。可以說Oracle數(shù)據(jù)庫系統(tǒng)是目前世界上流行的關(guān)系數(shù)據(jù)庫管理系統(tǒng),系統(tǒng)可移植性好、使用方便、功能強(qiáng),適用于各類大、中、小、微機(jī)環(huán)境。它是一種高效率、可靠性好的 適應(yīng)高吞吐量的數(shù)據(jù)庫解決方案。
只能改大。沒有數(shù)據(jù)可能直接用 alter table table_name modify column datatype;
如果有數(shù)據(jù),改小的話可以會(huì)丟失數(shù)據(jù)。
根據(jù)字段類型決定
alter table 表名 modify 字段名 varchar2(長度); 或
alter table 表名 modify 字段名 number(長度 );
比如:
表:stu(name varchar2(20)) 要將字段name的長度改為10
表中有一條數(shù)據(jù):name(中國華西村刀光劍影) 長度超過10,截取的時(shí)候必然要丟失數(shù)據(jù)。
當(dāng)然 如果表中的數(shù)據(jù)長度都小于10,則可以用sql語句段來直接搞定。
begin
alter table stu add (name2 varchar2(10)); ? 增加新字段
update stu set name2=substr(trim(name),1,10); ?賦值給新字段
alter table stu drop(name); ? ? ? ? ? ? ? ? ? ? ? ? ? 刪除原字段
alter table stu rename column name2 to name; 將新字段改名end;
語句:
alter table tableName rename column oldCName to newCName; -- 修改字段名
alter table tableName modify (cloumnName 數(shù)據(jù)類型); -- 修改數(shù)據(jù)類型
例如:
1、創(chuàng)建表:
CREATE TABLE Student(
id varchar2(32) primary key,
name varchar2(8) not null,
age number
);
2、修改字段名:
alter table Student rename column name to StuName;
3、修改數(shù)據(jù)類型:
alter table Student modify (id varchar2(64));
清醒時(shí)做事,糊涂時(shí)讀書,大怒時(shí)睡覺,獨(dú)處時(shí)思考;做一個(gè)幸福的人,讀書,旅行,努力工作,關(guān)心身體和心情,成為最好的自己
1、通過圖形界面操作,在左側(cè)依次選擇objects-tables,右鍵單擊要修改的表名,選中‘Edit’-column,可以直接修改;
2、使用DDL語句:alter table 表名 modify 字段名(字符類型(長度))
例如:
alter table emp modify ename(varchar2(32))
用alter語句進(jìn)行修改。
語法:
alter table 表名 modify 字段名 字段類型(字段長度);說明:如果是date等沒有長度的類型,字段長度部分可以省略。
如:目前test表屬性如下
要將name列的字段類型改為date類型,可用如下語句:
alter table test modify name date;此時(shí)可見name列的類型已經(jīng)更新成功。
注意事項(xiàng):
如果表中有數(shù)據(jù)盡量不要使用此語句,會(huì)造成數(shù)據(jù)丟失,應(yīng)在備份的情況下進(jìn)行修改。
網(wǎng)頁標(biāo)題:如何更改字段oracle 如何更改字段排序
本文路徑:http://chinadenli.net/article16/hgdodg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊(cè)、面包屑導(dǎo)航、網(wǎng)頁設(shè)計(jì)公司、網(wǎng)站維護(hù)、網(wǎng)站制作、移動(dòng)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)