我有一个具有以下值的表:
Articles/Search/ArtMID/2681/ArticleID/2218/Diet.aspx OurStory/MeettheFoodieandtheMD.aspx TheFood/OurMenu.aspx
我想要这个
Diet.aspx MeettheFoodieandtheMD.aspx OurMenu.aspx
我怎样才能做到这一点?
在SQL中执行此操作的方法:
SELECT SUBSTRING( string , LEN(string) - CHARINDEX('/',REVERSE(string)) + 2 , LEN(string) ) FROM SAMPLE;
JSFiddle在这里http://sqlfiddle.com/#!3/41ead/11