Oracle使用游標

2021-08-29 15:46:14 字數 247 閱讀 2553

了解一下訪問資料庫的ddl和tcl語句

一。plsql中使用select語句,應該與into字句連用,查詢出的返回值賦予into子句中的變數 ,變數的宣告是在delcare中

二。%type屬性

在plsql中可以將變數和常量宣告為內建或使用者定義的資料型別,以引用乙個列名,同時繼承他的資料型別和大小。這種動態賦值方法是非常有用的,比如變數引用的列的資料型別和大小改變了,如果使用了%type,那麼使用者就不必修改**,否則就必須修改**。

Oracle中使用游標

游標 目的 為了處理select語句返回多行資料 使用步驟 1 定義游標 cursor cursor name is select statement 2 開啟游標 open cursor name 3 提取資料 fetch cursor name into variable1,提取一行資料 或fe...

Oracle使用游標更新資料

使用游標修改資料 定義乙個游標,游標名稱為 mycursor 更新scott使用者中emp表中empno為7369的銷售額 created on 2015 11 30 by zhanw declare he emp rowtype cursor mycursor pid integer is sel...

oracle宣告游標和使用游標

使用游標便利員工工資 declare 宣告乙個變數接收員工工資 v sal emp.sal type 宣告乙個變數接收員工編號 v ename emp.ename type 宣告乙個游標 cursor cur name isselect ename,sal from emp 查詢所有員工工資 beg...