oracle查询用where 字段 in(select...)方法,但除了select的数据还要加一个数据,如in(select,'')救命啊
就是说我现在要查询出一组数据,取值是采用select*fromtablewhereidin(select*fromtable)这样的方法,但我现在希望idin的方法中再加...
就是说我现在要查询出一组数据,取值是采用select * from table where id in (select * from table)这样的方法,但我现在希望id in的方法中再加入一个值,比如where id in(select * from table) + 2;请问这该怎么做呢?谢啦~~
我试了一下or id='2'这个方法,但查询速度会非常慢,请问没木有其他好方法呀~~~~ 展开
我试了一下or id='2'这个方法,但查询速度会非常慢,请问没木有其他好方法呀~~~~ 展开
2个回答
展开全部
select * from table where id in (select id from table union all select '2' from dual)
或者
select * from table where id in (select id from table)
union
select * from table where id = '2'
或者
select * from table where id in (select id from table)
union
select * from table where id = '2'
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询