码迷,mamicode.com
首页 > 其他好文 > 详细

使用 Select Into 保存数据至变量

时间:2019-09-13 13:52:51      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:row   into   tab   output   pre   out   column   http   bms   

使用 Select Into 保存数据至变量


T_aTable  aTable%rowtype; --row type
v_col1 aTable.col1%TYPE; --column type
v_col2 aTable.col2%TYPE; --column type
begin
    select col1, col2 into v_col1,v_col2
        from aTable where v_col1 = ‘XX‘ ;-- -塞到v_col1 这变量

    select * into T_aTable
        from aTable where v_col1 = ‘XX‘; --塞到T_aTable 这row

    dbms_output.put_line(v_col1); --output v_col1
    dbms_output.put_line(T_aTable); --output T_aTable
end;

原文:大专栏  使用 Select Into 保存数据至变量


使用 Select Into 保存数据至变量

标签:row   into   tab   output   pre   out   column   http   bms   

原文地址:https://www.cnblogs.com/petewell/p/11516504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!