oracle数据库,对每个月份进行分类获取对应月份的对应内容,case...when... 的使用

Posted EastChilde

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle数据库,对每个月份进行分类获取对应月份的对应内容,case...when... 的使用相关的知识,希望对你有一定的参考价值。

 select (CASE WHEN to_char(sysdate, MM )=01 then A
              WHEN to_char(sysdate, MM )=02 then B
              WHEN to_char(sysdate, MM )=03 then C
              WHEN to_char(sysdate, MM )=04 then D
              WHEN to_char(sysdate, MM )=05 then E
              WHEN to_char(sysdate, MM )=06 then F
              WHEN to_char(sysdate, MM )=07 then G
              WHEN to_char(sysdate, MM )=08 then H
              WHEN to_char(sysdate, MM )=09 then I
              WHEN to_char(sysdate, MM )=10 then J
              WHEN to_char(sysdate, MM )=11 then K
              WHEN to_char(sysdate, MM )=12 then L end) || lpad(SEQ_NXHTBH.nextval, 4, 0) START_CODE from dual 

 

以上是关于oracle数据库,对每个月份进行分类获取对应月份的对应内容,case...when... 的使用的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 十月份题目汇总

Oracle 查询以获取月份数据并为不可用的月份提供 0

oracle sql 查询:按照月份对数据进行合并处理,具体看下图,sql 能否实现?

MYSQL 怎样获取指定月份的每一天,求助

oracle中从指定日期中获取月份或者部分数据

oracle sql 获取本季度所有月份,上季度所有月份