可以通過(guò)update方法進(jìn)行批量修改。
加查網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),加查網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為加查1000+提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的加查做網(wǎng)站的公司定做!
sql:update table_name SET age=25;
備注:也可以添加必要的條件,針對(duì)固定條件的數(shù)據(jù)進(jìn)行批量修改。
sql:update table_name SET age=age+1 where name ='zhangsan ';
Oracle添加注釋的語(yǔ)法為:
comment?on?column?字段名?is?'注釋名';
舉例:
創(chuàng)建表:
CREATE?TABLE?t1(
id??varchar2(32)?primary?key,
name?VARCHAR2(8)?NOT?NULL,
age?number,
);
添加表注釋:
COMMENT?ON?table?t1?IS?'個(gè)人信息';
添加字段注釋:
comment?on?column?t1.id??is?'id';
comment?on?column?t1.name?is?'姓名';
comment?on?column?t1.age?is?'年齡';
首先方法是使用RENAME關(guān)鍵字:
修改字段名:alter table 表名 rename column 現(xiàn)列名 to 新列名;
修改表名:alter table 表名 rename to 新表名
增加字段語(yǔ)法:alter table tablename add (column datatype [default value][null/not null],….);
說(shuō)明:alter table 表名 add (字段名 字段類型 默認(rèn)值 是否為空);
例:alter table sf_users add (HeadPIC blob);
例:alter table?sf_users add (userName varchar2(30) default?'空' not null);
修改字段的語(yǔ)法:alter table tablename modify (column datatype [default value][null/not null],….);
說(shuō)明:alter table 表名 modify (字段名 字段類型?默認(rèn)值 是否為空);
例:alter table sf_InvoiceApply modify (BILLCODE number(4));
刪除字段的語(yǔ)法:alter table tablename drop (column);
說(shuō)明:alter table 表名 drop column 字段名;
例:alter table sf_users drop column HeadPIC;
字段的重命名:
說(shuō)明:alter table 表名 rename ?column? 列名 to 新列名?? (其中:column是關(guān)鍵字)
例:alter table sf_InvoiceApply rename column PIC to NEWPIC;
表的重命名:
說(shuō)明:alter table 表名 rename to? 新表名
例:alter table?sf_InvoiceApply rename to??sf_New_InvoiceApply;
comment on column 表名.列名 is '1-使用;2-未使用';
然后你用pl sql developer
在sql窗口 執(zhí)行 select * from 表,把光標(biāo)移動(dòng)到列上,
看看狀態(tài)欄是不是你要的效果。
連接ORACLE數(shù)據(jù)庫(kù)有兩種方式:數(shù)據(jù)庫(kù)名和服務(wù)名,數(shù)據(jù)庫(kù)名的更改要使用重建控制文件的方式更改.alter database backup controlfile to trace后更改其中數(shù)據(jù)庫(kù)名為新名,運(yùn)行該文件
如果要更改目錄,在上面的Trace文件中將文件目錄改為新的文件目錄名稱重建或在mount階段使用alter database rename datafile一一將文件更改過(guò)來(lái).