Forum Replies Created

Viewing 6 posts - 61 through 66 (of 66 total)

  • RE: Loading dummy data

    what I did as a random test was the below 🙂

    INSERT INTO randomTest

    (Name, Surname, Age)

    values

    ('John'+ DATENAME(millisecond,getdate()),'Smith' + DATENAME(millisecond,getdate()), DATENAME(millisecond,getdate())),

    ('Paul'+ DATENAME(millisecond,getdate()) ,'Foster' + DATENAME(millisecond,getdate()), DATENAME(millisecond,getdate())),

    ('Lee' + DATENAME(millisecond,getdate()),'Carey' +...

  • RE: Loading dummy data

    thanks a lot this will come in handy 🙂

  • RE: Loading dummy data

    thank you, so it doesn't have to be completely different values just that they are unique?

  • RE: Loading dummy data

    do you have any known methods to generate a lot of random rows, I could do it through a C# app but is there a good way SQL

  • RE: Select COUNT(ID) vs Select Count(0)

    That makes a lot of sense now 😀 didn't think of it like that. thank you =D

  • RE: Select COUNT(ID) vs Select Count(0)

    thank you,

    wouldn't a COUNT(*) be longer if you had a BLOB ?

Viewing 6 posts - 61 through 66 (of 66 total)