1

我需要一个 ANSI SQL 92 语句来将最后一个 '/' 字符之后的所有字符更改为小写。

在 Sybase 上,我会写:

update table 
set col = left(col, len(col)-charindex('/', reverse(col))) ||
          lower(right(col, charindex('/', reverse(col))))

我可以找到 ANSI SQL 92 中的所有函数,但 REVERSE 函数只是用来查找斜线的最后一次出现。

4

0 回答 0