在查询分析器里面用T-SQL语言 通过定义一个游标,打开,并使用之进行数据的读取就OK了 fetch first/next/prior/last/relative n from cursorname 其中cursorname就是你定义的时候那个游标 那个n就是一个整数,可正可负 你要看倒数的就先选择 fetch last from cursorname 再 fetch relative -1 from cursorname 这样就可以读取出最后两条咯 有什么不懂的再问我吧
我不会写诗
2024-11-04 06:58:12
declare cursor cc is select * from table order by 信息创建者; type table_type is table of table%rowtype ; v_depart table_type ; begin open cc; fetch cc bulk collect into v_depart ; for i in v_depart.count-1..v_depart.count loop dbms_output.put_line(v_depart(i).姓名||'-'||v_depart(i).年龄||'-'||v_depart(i).信息创建者); end loop; close cc; end;