• GilaMonster (5/23/2013)


    marc.snoeys (5/22/2013)


    That's a non-argument because you can't insert two or more records with the VALUES-syntax as well 😉

    Like this you mean?

    CREATE TABLE #test (

    ID INT

    )

    INSERT INTO #test (ID)

    VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10)

    SELECT * FROM #test AS t

    I stand corrected

    "Walking on water and developing software from a specification are easy if both are frozen." -- Edward V. Berard, "Life-Cycle Approaches"