Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: how to retrieve the first record in a table

    Hi,

    Here is your answered query,

    please take a look.

    CREATE TABLE #temp

    (

    [Column A] VARCHAR(10),

    [Column B] VARCHAR(10)

    )

    INSERT INTO #temp VALUES ('abnc','123')

    INSERT INTO #temp VALUES ('abnc','324')

    INSERT INTO #temp VALUES ('abnc','800')

    INSERT INTO #temp VALUES...

Viewing post 1 (of 1 total)