Oracle數據庫學習筆記(二十三)--PL/SQL中的遊標

遊標的概念 相似於 Java 中的集合,能夠存放多個對象,多行記錄。web 學習筆記 一、輸出 emp 表中全部員工的姓名sql declare cursor c1 is select * from emp; emprow emp%rowtype; --記錄型變量 begin open c1; loop fetch c1 into emprow;
相關文章
相關標籤/搜索