oracle 日期格式转换把一位转化成两位

select  *
       to_char(to_date(t.f_vc_day || '-' || t.f_vc_month || '月' || '-' ||
                       t.f_vc_year),
               'yyyymmdd') || to_char(to_date(t.f_vc_time, 'hh24'), 'hh24')
  from B
group by to_char(to_date(t.f_vc_day || '-' || t.f_vc_month || '月' || '-' ||
                          t.f_vc_year),
                  'yyyymmdd') ||
          to_char(to_date(t.f_vc_time, 'hh24'), 'hh24');

你可能感兴趣的:(oracle 日期格式转换把一位转化成两位)