• Is this what you need ? Look up the LEFT function in BOL Books On Line

    CREATE TABLE #T(Cola VARCHAR(6),Colb CHAR(1))

    INSERT INTO #T(Cola,colb)

    SELECT 'FGHIJK',LEFT('FGHIJK',1)

    -- check result

    SELECT Cola,colb FROM #T

    Result:

    Colacolb

    FGHIJKF

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]