SQL 创建以周为周期的表 - 在月末有休息(Oracle)
我需要创建一个具有以下结构的表:
日历周;周开始日期;周结束日期
,包含从 2007 年开始直到本周的所有周。
特殊之处在于,当月末在一周内时,该周被切成两部分 - 一个记录的开始日期是该周的开始,结束日期是该月的最后一天,以及一条包含一周剩余日期的记录(开始日期是新月的第一天,结束日期是一周的最后一天)。
示例(一周的开始是星期一):日历周;周开始日期;周末结束日期; ... 2009 CW48; 2009年11月23日; 2009年11月29日——“正常”周,为期7天,从星期一开始到星期日结束,2009年cW49; 2009年11月30日; 2009年11月30日——CW49的第一部分,结束于2009年cW49月份的最后一天; 2009 年 12 月 1 日; 06.12.2009 --CW49 的第二部分,从 2009 年新月 CW50 的第一天开始; 2009 年 12 月 7 日; 13.12.2009 --“正常”一周,没有每月休息...
如何在 Oracle 中创建这样的表(SQL 或 PL SQL)?
I need to create a table with the following structure:
calendar week; week start date; week end date
which contains all weeks beginning in 2007 until the current week.
The special thing is, that when an end of month falls within a week, the week is cut in two slices - one record that has a start date that is the beginning of the week and the end date is the last day of the month, and one record that contains the dates of the rest of the week (start date is first of the new month, end date is last day of the week).
Example (beginning of week is monday):calendar week; week start date; week end date; ... 2009 cW48; 23.11.2009; 29.11.2009 --"normal" week with 7 days, beginning monday and ending sunday 2009 cW49; 30.11.2009; 30.11.2009 --first part of the CW49, which ends at last day of the month 2009 cW49; 01.12.2009; 06.12.2009 --second part of the CW49, which begins at fist day of the new month 2009 cW50; 07.12.2009; 13.12.2009 --"normal" week, without a monthly break ...
How to create such a table in Oracle (SQL or PL SQL)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以像这样创建你的表:
you could create your table like this:
这是一个用于创建表的小 PL/SQL 块。
如果需要,可以更改表名称。
this is a small PL/SQL block to create your table.
Change the table names, if you want.
您可以这样创建表格:
重点是使用
IW
和MM
格式掩码来获取周数和月份数,然后按这两者对结果进行分组。You can create the table this way:
The point is in use
IW
andMM
format mask to get number of week and month, and then group results by both of them.