如果A只是給了B用戶查看該用表的權(quán)限,那么B用戶是無法修改A用戶表的。
成都創(chuàng)新互聯(lián)是一家專注網(wǎng)站建設(shè)、網(wǎng)絡(luò)營銷策劃、微信小程序定制開發(fā)、電子商務(wù)建設(shè)、網(wǎng)絡(luò)推廣、移動互聯(lián)開發(fā)、研究、服務(wù)為一體的技術(shù)型公司。公司成立十年以來,已經(jīng)為上1000+成都軟裝設(shè)計各業(yè)的企業(yè)公司提供互聯(lián)網(wǎng)服務(wù)?,F(xiàn)在,服務(wù)的上1000+客戶與我們一路同行,見證我們的成長;未來,我們一起分享成功的喜悅。
如果B有修改A用戶表的權(quán)限,那么A用戶看到的表名便是修改后的名字。
首先方法是使用RENAME關(guān)鍵字:
修改字段名: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.
spfile是參數(shù)文件。這個就相當(dāng)于你數(shù)據(jù)庫的一些配置的信息。scope=spfile,表明在數(shù)據(jù)庫下次啟動的
時候生效。如果不加,表示立刻生效,下次啟動依然有效。但有些參數(shù)是不能在數(shù)據(jù)庫運行的狀態(tài)下修改的。
2.select...from...是標(biāo)準(zhǔn)的sql語句。也就是說,你select后面必須是表的列,from后面必須是表的名稱(當(dāng)然,視圖函數(shù)什么的就不多講了,講了你聽著也亂)。
system
不是表的名稱,所以你的語句是無效的。
alter
system
set
open_links=12,這句話你要按照英語翻譯過來。意思是將系統(tǒng)的open_links這個參數(shù),設(shè)置成12!而不是將system這個表修改掉。你看這句話里根本沒有table這個詞,當(dāng)然也就不能select。
你要用show
parameter
open就可以找到這個參數(shù)了。
你最好先去看看oracle基礎(chǔ)知識的書