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.
我有 YYYY 格式的年份,我想将其转换为 FYYY 格式。例如,2014 年将是 FY14,2009 年将是 FY09,依此类推。我正在创建一个包含金额字段上的 SUM 聚合函数的视图。因此,查询还包含一个 Group By 子句,正如您所知。
一个可能的解决方法可能是
'FY'||to_char(to_date(your_year, 'YYYY'), 'YY')
OR正如@Wernfied 所说,
OR
to_char(to_date(your_year, 'YYYY'), '"FY"YY')
SQL小提琴
您也可以在不连接的情况下执行此操作: