• Hi Guys

    By declaring the variables as below - Will that guarantee that every number generated is Unique?

    SELECT @NumberOfRows = 10000000,

    @StartValue = 1,

    @EndValue = 10000000,

    @Range = @EndValue - @StartValue + 1

    Thanks