admin 管理员组文章数量: 887021
一. 区别:
insert into select: 用于将select出来的结果集复制到一个新表中, 它是标准的sql语句
select into: 将结果保存到一个变量中, 它是plsql的赋值语句
二. 例子:
insert into select:
insert into test select * from t_source where id = 1;
commit;
select into:
create or replace procedure my_test is
aa varchar2(100);
v_record t_source%rowtype;
begin
select name into aa from t_source where id = 1;
dbms_output.put_line('普通变量 name= ' || aa);
select * into v_record from t_source where id = 1;
dbms_output.put_line('记录变量 name= ' || v_record.name);
end;
版权声明:本文标题:select into 与 insert into select 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1725943636h896632.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论