作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 varchar2 类型的 transdate 列,它具有以下主菜
01/02/2012
01/03/2012
01-JAN-2012
03-APR-2012
null
null
最佳答案
转换您的 varchar2
后日期为真 date
数据类型,然后转换回 varchar2
使用所需的掩码:
to_char(to_date('01/02/2012','MM/DD/YYYY'),'WW')
number
中的周数数据类型,您可以将语句包装在
to_number()
中:
to_number(to_char(to_date('01/02/2012','MM/DD/YYYY'),'WW'))
WW Week of year (1-53) where week 1 starts on the first day of the year and continues to the seventh day of the year.
W Week of month (1-5) where week 1 starts on the first day of the month and ends on the seventh.
IW Week of year (1-52 or 1-53) based on the ISO standard.
关于sql - 如何在sql中提取周数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16530044/
我是一名优秀的程序员,十分优秀!