Query to get only numbers from a string

前端 未结 14 2500
野性不改
野性不改 2020-11-22 06:17

I have data like this:

string 1: 003Preliminary Examination Plan   
string 2: Coordination005  
string 3: Balance1000sheet

The output I exp

14条回答
  •  深忆病人
    2020-11-22 06:42

    Taking other answers into account, i came up with my own: Try this :

    SUBSTRING('your-string-here', PATINDEX('%[0-9]%', 'your-string-here'), LEN('your-string-here'))
    

    NB: Only works for the first int in the string, ex: abc123vfg34 returns 123.

提交回复
热议问题