• Note:

    insert into #test values (2,'D'),('','E') is equal to insert into #test select 2,'D' union select '','E'

    Actually, its like:

    insert into #test values (2,'D'),('','E') is equal to insert into #test select 2,'D' union all select '','E'



    PeteK
    I have CDO. It's like OCD but all the letters are in alphabetical order... as they should be.