欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sqlserver indexOf lastIndexOf

程序员文章站 2022-07-12 22:14:21
...
//sqlserver  lastIndexOf
select  len(c_attachFilePath)+1-charindex('/',reverse(c_attachFilePath)) from [yjs].dbo.HDZX_QUESTION
   where [c_attachFilePath] is not null


//sqlserver indexOf
  select CHARINDEX('.',c_attachFilePath) from [yjs].dbo.HDZX_QUESTION where [c_attachFilePath] is not null