Auto increment field increments with 1 only, question is how to increment with 3, specially when the initial number is not 1 but lets say number 2000
You can do it in SQL:
create table T (id counter(2000,3), f1 char(5));
Auto increment field increments with 1 only, question is how to increment with 3, specially when the initial number is not 1 but lets say number 2000
You can do it in SQL: