oracle 中的插入语句要条件判断怎么写?
就像这样的语句:insertintotable1values(a1,a2,aidin(selectaidfrompwherep.name=''),cidin(select...
就像这样的语句:insert into table1 values(a1,a2,aid in(select aid from p where p.name=''),cid in (select sid from u where u.name='aa')) 里面的select语句需要判断,如果能查出来数据,就插入,如果不能就报错!
展开
3个回答
展开全部
insert into table1 values(a1,a2,aid in(select aid from p where p.name=''),cid in (select sid from u where u.name='aa'))
应该要把 aid in ,cid in去掉吧?
最简单的方式,把后面两个字段设置为非空,让oracle报错去。。呵呵
应该要把 aid in ,cid in去掉吧?
最简单的方式,把后面两个字段设置为非空,让oracle报错去。。呵呵
追问
如果设置为空的话,我的查询就没有意义了!, 而且我这个字段在数据库中是可以为空的,不知道在这里插入null的话,会不会报错呢
追答
不会,我试了下insert into table1 values(a1,a2,(select aid from p where p.name=''), (select sid from u where u.name='aa'))。可以写进去的。
展开全部
既然你的数据库中该字段可以为空,那为什么非要不为空呢?
declare
v_aid character(10);
v_cid character(10);
select adi from p into v_aid where p.name='';
select cid from u into v_cid where u.name='aa';
if (v_aid is not null ) and (v_cid is not null)
then insert into table 1 values(a1,a2,v_aid,v_cid);
else
then 输出错误信息(好长时间没有写过了 忘了)
end if;
declare
v_aid character(10);
v_cid character(10);
select adi from p into v_aid where p.name='';
select cid from u into v_cid where u.name='aa';
if (v_aid is not null ) and (v_cid is not null)
then insert into table 1 values(a1,a2,v_aid,v_cid);
else
then 输出错误信息(好长时间没有写过了 忘了)
end if;
追问
我是想让他为空的时候报个错出来,我好知道是那条数据的插入有问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要写成判断
if (select count(aid) from p where p.name='')<>0 and (select count(sid) from u where u.name='aa')<>0
begin
insert into table1 values(a1,a2,aid,cid)
end
else
begin
raiserror 50001 ' 无法插入数据! '
rollback transaction
end
if (select count(aid) from p where p.name='')<>0 and (select count(sid) from u where u.name='aa')<>0
begin
insert into table1 values(a1,a2,aid,cid)
end
else
begin
raiserror 50001 ' 无法插入数据! '
rollback transaction
end
追问
你好,我要插入的值是aid和sid 这两个值是从上面条件判断中查询出来的,我的问题写的不太准确,不好意思,麻烦你再看看。。
追答
那你的插入语句就还用你原来的插入,这样可以将条件后的内容插入,但前面的判断还是要的
insert into table1 values(a1,a2,aid in(select aid from p where p.name=''),cid in (select sid from u where u.name='aa'))
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询