SQL SELECT everything after a certain character

前端 未结 6 2187
广开言路
广开言路 2021-01-31 16:02

I need to extract everything after the last \'=\' (http://www.domain.com?query=blablabla - > blablabla) but this query returns the entire strings. Where did I go wrong in here:<

6条回答
  •  名媛妹妹
    2021-01-31 16:20

    Try this (it should work if there are multiple '=' characters in the string):

    SELECT RIGHT(supplier_reference, (CHARINDEX('=',REVERSE(supplier_reference),0))-1) FROM ps_product
    

提交回复
热议问题