PLSQL中一些常見的表字段操作

2021-07-23 20:00:10 字數 795 閱讀 7585

--新增字段

alter table epf_finance add descrip varchar2(4000);

--修改表字段長度

alter table epf_finance modify purpose varchar2(100);

--修改字段型別

alter table epf_finance modify purpose number;

--修改欄位名字

alter table epf_finance rename column descrip to mark;

--刪除字段

alter table epf_finance drop column mark;

--建立同義詞

--授權

grant insert,update,delete on epf_finance to hr with grant option;

grant debug any procedure, debug connect session to hr;

--建立索引用於查詢

create index hr_job_id_index on jobs(job_id) tablespace users;

--查詢乙個使用者擁有的系統許可權

select * from dba_sys_privs where grantee ='hr';

--檢視使用者下面有多少個角色;

select * from dba_role_privs where grantee='hr';

C 中一些常見的方法

1.對規則的字串進行處理的bool splitstring string strorigin,string strsplit,vector vct string str strorigin.substr 0,iindex vct string.push back str ilen int stror...

中一些標籤的常見用法

title標籤用來設定 標題,當其為預設狀態 未設定 時,當前網頁在瀏覽器中顯示的 標題為檔案的名稱.meta標籤通常有以下四種用法 1.設定網頁編碼,用於告訴瀏覽器當前網頁的編碼方式,防止亂碼 使用方法 2.設定網頁關鍵字,為搜尋引擎提供服務.使用方法 注意 name keywords 為固定寫法...

PLSQL中一些特殊型別定義方法

plsql中一些特殊型別定義方法 1.record 初始不存在資料 declare 定義型別 type record type name is record column name column type,或record type name table name rowtype 這樣省去了乙個個定義...