Oracle PL SQL 學習筆記(二)

2021-08-26 06:25:10 字數 392 閱讀 2072

二、pl/sql 開發工具

2.1sql*plus

1.在命令列執行sql*plus

語法:sqlplus [username] /[password] [@server]

其中,username使用者名稱,password密碼,server指定主機字串。當連線到本地資料庫時,不需要提供網路服務名。

d:\>sqlplus scott/tiger

當在客戶端使用sql*plus連線遠端資料庫時,必須使用net manager配置網路服務名。

d:\>sqlplus scott/tiger@orel

2.在windows環境中執行sql*plus

2.2pl/sql developer

2.3procedure builder

Oracle PL SQL學習筆記

游標分類 游標概念 與游標相關的語法型別 建立游標 如同宣告任何其他變數一樣 cursor cursor name is sql statement 開啟與關閉游標 開啟游標 open cursor arg arg 關閉游標 close cursor 取資料 fetch cursor into va...

Oracle PL SQL 學習筆記

一 pl sql 塊 塊定義語法 declare 定義部分 定義常量 變數 複雜資料型別 游標 begin 執行部分 pl sql語句和sql語句 exception 異常處理部分 處理執行錯誤 end 注 pl sql中結束輸入使用 字元 dbms output.put line 輸出的字串內容 ...

Oracle PL SQL 學習筆記(四)

3.2定義並使用變數 pl sql資料型別 標量 scalar 型別 復合 composite 型別 參照 reference 型別和lob larger object 型別。3.2.1標量變數 1.常用標量型別 1 varchar2 n 定義可變長度的字串,長度 4000位元組 2 char n ...