show/hide this revision's text 3 not 10 million increments, just 10 million

Edit: previous answer was completely wrong.

You can do it like this:

Identity(1, 13)

As tested by:

for (int i = 1; i < 10000000; i += 13)
{
    if (i % 13 == 0)
    {
    	Console.WriteLine(i);
    }
}

Incrementing by 13, starting from 1 should never give you a multiple of 13, at least up to the 10 millionincrements I tested.

show/hide this revision's text 2 wrong answer

If you really want to

Edit: previous answer was completely wrong.

You can do it like this:

Identity(1, why not create your own ID column 13)

As tested by:

for (not identity or auto incrementint i = 1; i < 10000000; i += 13)
and handle the incrementing yourself? That way you could ensure that it will never be a multiple of {
    if (i % 13 == 0)
    {
    	Console.WriteLine(i);
    }
}

Incrementing by 13, but would starting from 1 should never give you more work to do in your application code.

As far as I can tell, since you can only specify the seed and the increment in an Identity column, you can't prevent a multiple of a number from appearing. Unless you can place an expression as an Identity argument13, you're not going to be able at least up to make the column enforce that rule for you10 million increments I tested.

show/hide this revision's text 1

If you really want to do this, why not create your own ID column (not identity or auto increment) and handle the incrementing yourself? That way you could ensure that it will never be a multiple of 13, but would give you more work to do in your application code.

As far as I can tell, since you can only specify the seed and the increment in an Identity column, you can't prevent a multiple of a number from appearing. Unless you can place an expression as an Identity argument, you're not going to be able to make the column enforce that rule for you.

    Post Made Community Wiki by Community