Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

sql server 2008:seleziona la sottostringa da un campo

Suddividilo in 2 passaggi:

  1. scartare tutto fino all'inizio del numero (qui ho ipotizzato un minimo di 3 cifre)
  2. quindi porta tutto fino alla cifra non numerica successiva

Avrai bisogno di un CASE per la SINISTRA è il numero è alla fine perché PATINDEX restituirà zero

DECLARE @MyTable TABLE (bigstring varchar(200))
INSERT @MyTable VALUES ('F:\MassHunter\DATA\6897_Pan_1\QuantResults\6897_Pan_1.batch.bin')
INSERT @MyTable VALUES ('F:\MassHunter\DATA\6897_Pan_1\QuantResults\6897_Pan_1.batch.bin')
INSERT @MyTable VALUES ('10914_Excel Short Summary.xls')

SELECT  --assumes number not at end of string
    LEFT(startOf, PATINDEX('%[^0-9]%', startof)-1)
FROM
    (
    SELECT  --assumed 3 digits minimum
        SUBSTRING(bigstring, PATINDEX('%[0-9][0-9][0-9]%', bigstring), 8000) AS startOf
    FROM
        @MyTable
    ) foo