oracle数据库中,两个字段之间包含的所有信息如何显示

比如:部门名称department是C,起始人员编号startno是A,截至人员编号endno是B字段A和B都是varchar2,字段A下是0100001,0100007... 比如:部门名称department是C,起始人员编号startno是A,截至人员编号endno是B
字段A和B都是varchar2,字段A下是0100001,0100007,0100011。。。字段B下是0100006,0100010,0100013,怎么写sql可以显示结果为:
C 0100001
C 0100002
C 0100003
C 0100004
C ........
C 0100006
展开
 我来答
nietiezheng
2011-09-05 · TA获得超过5536个赞
知道大有可为答主
回答量:3132
采纳率:87%
帮助的人:1232万
展开全部
select department, A
from table
where A <all (select B from table where department='C') and department='C'
unoin
select department, B
from table
where B = (select min(B) from table where department='C') and department='C'

select department, A
from table
where A < (select min(B) from table where department='C') and department='C'
select department, B
from table
where B = (select min(B) from table where department='C') and department='C'
更多追问追答
追问
不好意思,不对,查出来的结果还是只有A,不是A和B之间所有的,而且,如果只查一个部门的所有人员编号的话,完全可以使用excel查,目的是所有的部门下所有的员工号,请问是否有办法查出来
追答
你看看这个是你要的不:

select C, A
from table T1
where A <(select min(B) from table T2 where T2.C=T1.C)
unoin
select A, B
from table T1
where B = (select min(B) from table T2 where T2.C=T1.C)
yaoyao54372839
2011-09-05
知道答主
回答量:14
采纳率:0%
帮助的人:9.9万
展开全部
额,不会
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式