Welcome to Sign in | Help

Re: functie care "taie" o portiune dintr-un string - sql server 2000

  •  01-07-2008, 11:12 AM

    Re: functie care "taie" o portiune dintr-un string - sql server 2000

    Incearca SUBSTRING - de exemplu:

    DECLARE @k varchar(50)

    SET @k = 'sql server 2000'

    SELECT SUBSTRING(@k, 4, LEN(@k) - 3)

    * Pentru functiile care "lucreaza" cu siruri, vezi BOL - "string functions"

View Complete Thread
Powered by Community Server (Commercial Edition), by Telligent Systems