首页  >  文章  >  数据库  >  在 SAP DB 中从特定月份运行 SQL 查询

在 SAP DB 中从特定月份运行 SQL 查询

王林
王林转载
2023-08-30 13:53:101149浏览

在 SAP DB 中从特定月份运行 SQL 查询

当您的 T0.name 是字符归档时,您应该按如下方式替换 Order By -

order by
case when cast(left (T0.Name,2) as int)>=8
   then cast(left (T0.Name,2) as int)-8
   else cast(left (T0.Name,2) as int)+4
 end

以上是在 SAP DB 中从特定月份运行 SQL 查询的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除