0.匯入資料
$imp system/test tables=(xs,kc,xs_kc) file=c:\xskc.dmp
$imp system/test tables=(part_book1,lend) file=c:\xs_lend_part_book1.dmp
1.開啟輸出set serveroutput on
2. ps\sql基本語法declare
v_xm varchar2(8):='jame';
v_zym varchar2(10):='計算機';
v_zxf number(2):=45;
begin
update xs set zxf = v_zxf where xm=v_xm;
if sql%notfound then
dbms_output.put_line('沒有該人,請插入記錄: ');
insert into xs(xh,xm,zym,zxf) values('007',v_xm,v_zym,v_zxf);
end if;
end;
3.為表增加乙個分割槽alter table part_book1
add partition part3 values(default) tablespace system;
4.分割分割槽表alter table part_book1
split partition part3 at (to_date('20140101',yyyymmdd))
into (partition part3,partition part4);
5.查詢分割槽表select * from dba_tab_partitions where table_name='part_book1';
6. ps\sql基本語法declare
row_id rowid;
info varchar2(100);
begin
update scott.dept set deptno=90 where dname='research'
returning rowid,dname || ' : '|| to_char(deptno)||' : '||loc into row_id,info;
dbms_output.put_line('rowid ----'||row_id);
dbms_output.put_line(info);
end;
7.刪除表emp的外來鍵alter table scott.emp drop constraint fk_deptno;
8.&臨時變數select &x+1 from dual;
9.&&永久變數select &&x+1 from dual;
go基本語法 golang基本語法
匯入包 import fmt import fmt os 函式外申明變數 var a int 函式內申明變數 a slice申明 slice本質是指向陣列的指標 var s int var s int make int,3 s make int,3 基於陣列建立slice a 3 int s a 3...
語法 C 基本語法
標頭檔案 在程式設計競賽中,我們常見乙個標頭檔案 include 發現它是部分c 中支援的乙個幾乎萬能的標頭檔案,包含所有的可用到的c 庫函式,如 在程式設計競賽中,使用這個標頭檔案是乙個好的想法,特別是當你在選擇標頭檔案時想減少時間,我們更加專注於找到演算法解決問題而不是軟體工程。而從軟體工程的視...
基本if語法
if 如果 else 否則 案例 絕對值 輸入乙個數,如果這個數是正數,那麼輸出它本身 如果這個數是負數,那麼輸出它的相反數 案例 計算三角形面積 改 要求能夠判斷出三條邊是否能構成三角形 如果不能,輸出 請正確輸入 案例 判斷乙個數是否為水仙花數 案例 獻血 根據性別和體重計算輸血量女性體重不超過...