从 Oracle 中的日期获取月份名称
如何从 Oracle 中的给定日期获取月份名称?
How to fetch month name from a given date in Oracle?
如果给定的日期是 '15-11-2010'
那么我想要 November
从这个日期开始.
If the given date is '15-11-2010'
then I want November
from this date.
推荐答案
select to_char(sysdate, 'Month') from dual
在您的示例中将是:
select to_char(to_date('15-11-2010', 'DD-MM-YYYY'), 'Month') from dual
相关文章