Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下数据库架构 Facts(ReportNo, ReportName, Load_Date)
Load_Date是(数字类型)的列,有 YYYYMMDD 格式的日期记录。
我需要使用 Load_Date 中已经存在的日期打印每一行的周数。由于它已经是number类型,我不必将它从 date 转换为 char。
输出应该是**周数| 报告编号 | 报告名称
尝试
select ReportNo,ReportName,to_char(to_date(Load_Date,'yyyymmdd'),'ww') from Facts