2个回答
2015-03-27 · 知道合伙人互联网行家
关注
展开全部
select * from table where (flag=1 and data1=1) or (flag=0 and data2=1);
也可以写一个过程
create or replace procedure 过程名 as
begin
if flag=1 then
select * from table where flag=1 and data1=1;
else if flag=0 then
select * from table where flag=0 and data2=1;
end if
end if
end
然后用过程名调用运行就行了。
也可以写一个过程
create or replace procedure 过程名 as
begin
if flag=1 then
select * from table where flag=1 and data1=1;
else if flag=0 then
select * from table where flag=0 and data2=1;
end if
end if
end
然后用过程名调用运行就行了。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询