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

数据库数据库 2023-08-31 02:50:27 956
摘要: 当您的T0.name是字符归档时,您应该按如下方式替换OrderBy-orderbycasewhencast(left(T0.Name,2)asint)>=8thencast(left(T0.Name,2)asint)-8elsecast(left(T0.Name,2)asint)+4end以上就...

在 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 查询的详细内容,更多请关注其它相关文章!