Oracle中,写存储过程,如何比较两条记录是不是相同,两条记录分别来自两张表,表结构相同

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle中,写存储过程,如何比较两条记录是不是相同,两条记录分别来自两张表,表结构相同相关的知识,希望对你有一定的参考价值。

Oracle中,写存储过程,如何比较两条记录是否相同,两条记录分别来自两张表,表结构相同,有没有好的方法。(不要告诉我把两张表的所有字段值一一列出来比较,这个我会,但不想用)

DECLARE
v_count pls_integer;
BEGIN
select count(*) into v_count
from
(
select * from tb1 where
minus
select * from tb2 where ...
);
if v_count=0 then
dbms_output.put_line ('2条数据完全相等');
else
dbms_output.put_line ('2条数据不完全相等');
end if
END;
参考技术A 利用minus语法。
v_count number;
select count(*) into v_count from(
select * from tbl1 where ***
minus
select * from tbl2 where ****
)
if v_count=0 then
相同
else
不相同
end if;本回答被提问者采纳

oracle 存储过程

create or replace procedure GetRecords(num2 in number) as
--变量声明
maxlimit number;--记录当前最大拿到的码数量
shenyu number;--当前有多少个码
apptype number;--记录操作类型
begin
if num2=0-- 判断是否是指定数量,如果是0既为不指定数量,需要查询要获取多少凭证码
begin
select max_limit into maxlimit from t_code_limit;
select count(t.id) into shenyu from t_code_pool t where t.code_status=0;
num2=maxlimit-shenyu;
apptype=0;--设置类型为自动
end
else
begin
apptype=1;--设置类型为手动
end
Insert into t_code_pool(id,epass_code,subsidiary_code,code_status,apply_time)
select seq_test.nextval,t.cp_img,t.cp_number,t.cp_status,sysdate from
epassbase.t_base_code_pool t where t.cp_status=0 and rownum<num2 order by t.cp_createtime;--查询epss基础平台表,并直接插入到epss平台

update epassbase.t_base_code_pool set cp_status=1 where epassbase.t_base_code_pool.cp_id in(
select t.cp_id from epassbase.t_base_code_pool t where rownum<num2 order by t.cp_createtime;)--将上一步拿过得数据进行修改状态

insert into t_code_apply_log values(seq_test.nextval,sysdate,num2,apptype);--添加epass拿码记录

insert into epassbase.t_apply_record values(1,1,num2,sysdate);--添加基础平台拿码记录

end;
帮忙看一下那里错误,解决者追加积分
....

参考技术A 说的是 oracle 存储过程 用的是 SQL server 的语法! 参考技术B 可以用单步调试看一下出错的地方,这样看代码很难定位问题! 参考技术C 你这些复制语句不用加冒号么? a:=b;修改一下试试,如果还报错,把报错提示贴出来。追问

那些都改过了
update epassbase.t_base_code_pool set cp_status=1 where cp_id in
(select cp_id from epassbase.t_base_code_pool where rownum<num1 order by cp_createtime);
这两句提示上面的是有可能被忽略,下面的是缺少右括号,让我很是纠结啊= =

追答

我测试了一下你这种语句
update sc_ord_order set create_by='11111' where id in (select id from sc_ord_order where rownum <2 );
应该是没有问题啊。要不你把现在的源码贴出来我看看。

追问

大哥= =有木有个联系方式,qq啥的= =我加你- -这上面发那个源码不够了- -现在最多发两百个- -

追答

84921124 qq

本回答被提问者采纳

以上是关于Oracle中,写存储过程,如何比较两条记录是不是相同,两条记录分别来自两张表,表结构相同的主要内容,如果未能解决你的问题,请参考以下文章

水晶报表可以连接oracle的存储过程吗

oracle字段为''或者NULL时做比较

oracle 存储过程中如何用ROWID

Oracle 的存储过程怎么写。?

Instr函数在oracle存储过程里怎么用

oracle触发器记录字段变更