admin

分割字符串并取最后一个元素

sql

我有一个具有以下值的表:

Articles/Search/ArtMID/2681/ArticleID/2218/Diet.aspx
OurStory/MeettheFoodieandtheMD.aspx
TheFood/OurMenu.aspx

我想要这个

Diet.aspx
MeettheFoodieandtheMD.aspx
OurMenu.aspx

我怎样才能做到这一点?


阅读 178

收藏
2021-05-10

共1个答案

admin

在SQL中执行此操作的方法:

SELECT SUBSTRING( string , LEN(string) -  CHARINDEX('/',REVERSE(string)) + 2  , LEN(string)  ) FROM SAMPLE;

JSFiddle在这里http://sqlfiddle.com/#!3/41ead/11

2021-05-10