sql查询 select count(*) from A where A.date > (select systemdate from B)该怎么实现?
4个回答
展开全部
select systemdate from B语句取出的结果不止一个吧?这样写不行的。除非只有一个:
select top 1systemdate from B。
select top 1systemdate from B。
追问
就是只有一个,请问怎么写?
追答
如果表B中只有一条记录,那么,你的语句:
select count(*) from A where A.date > (select systemdate from B)
没有问题的;
否则,取B中第一条的话:
select count(*) from A where A.date > (select TOP 1 systemdate from B)
展开全部
select count(*) from A where A.date >sysdate
或者
eg:select count(*) from A where A.date >to_date('2013-01-01','yyyy-mm-dd')
或者
eg:select count(*) from A where A.date >to_date('2013-01-01','yyyy-mm-dd')
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select count(*) from A where A.date > (select max(systemdate) from B)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
AB两表有何关联关系?
追问
没啥联系,就是A中的where判断需要用到B中的某个值
追答
如果B表中只有一个值的话,那么在sqlserver中,你的语法是成立的,不过在其他数据库中就不晓得了,但是你可以改成通用的,如
select count(*) from A where exists (select 1 from B where A.date >systemdate)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询