select distinct 读者.借书证号,姓名,单位
from 读者,借阅
where not exists
(
select 借书证号
from 借阅
where (datepart(year,借书日期)=2005 and datepart(month,借书日期)>=10)or
datepart(year,借书日期)>2005
)
没有显示出数据出来!不知道哪里出错啦?请高手帮忙改一下!数据库里是有符合条件的数据的~
查询2005年10月以后没有借书的读者借书证号、姓名和单位
答案:1 悬赏:60 手机版
解决时间 2021-04-14 09:28
- 提问者网友:斑駁影
- 2021-04-13 17:21
最佳答案
- 五星知识达人网友:琴狂剑也妄
- 2021-04-13 17:35
select distinct 读者.借书证号,姓名,单位
from 读者,借阅
where 读者.借书证号 not in
(
select 借书证号
from 借阅
where (datepart(year,借书日期)=2005 and datepart(month,借书日期)>=10)or
datepart(year,借书日期)>2005
)
from 读者,借阅
where 读者.借书证号 not in
(
select 借书证号
from 借阅
where (datepart(year,借书日期)=2005 and datepart(month,借书日期)>=10)or
datepart(year,借书日期)>2005
)
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯