查询以获取日期计数
假设我有 3 组记录
key1 start_date1 start_date2 start_date3
701 08-SEP-2009 08-DEC-2009 08-jan-2010
701 08-JUN-2013 08-SEP-2013 08-DEC-2013
701 08-MAR-2017 08-MAR-2018 31-DEC-1899
,所以我需要获取大于 14-apr-2011
的更改日期计数。
即对于特定键 701
,更改日期计数为 5
即对于 3 组行,日期大于 14-Apr-2011
共有 5 个计数。
我需要获得一个包含两个字段的表输出,
Key1 changedcount
701 5
请帮助我解决这个问题..我为此尝试了超过 2 天:(
Suppose I am having 3 set of records
key1 start_date1 start_date2 start_date3
701 08-SEP-2009 08-DEC-2009 08-jan-2010
701 08-JUN-2013 08-SEP-2013 08-DEC-2013
701 08-MAR-2017 08-MAR-2018 31-DEC-1899
So i need to get a count of changed date greater than 14-apr-2011
.
i.e. for particular key 701
, there are changed date count as 5
i.e. for 3 set of rows, the dates greater than 14-Apr-2011
are of 5 counts.
I need to get a table output with two fields as
Key1 changedcount
701 5
Please help me regarding this..i was tryin for this for more than 2 days :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试如下操作:
you could try something like the following :