auto incrementing

admin

Administrator
Staff member
Problem: fields of type interval auto increment (i do believe). but if you create an interval field in a database that already has values in the tables, will the interval feild auto assign itself numbers to the records that have previously been created?

ex:
char(10) int(2)
Name Siblings
Marty 2
Kate 1
Joe 4

if i was to add an interval field, will it then:

char(10) int(2) interval
Name Siblings Record_Number
Marty 2 1
Kate 1 2
Joe 4 3

will it work with importing dumps?

thanks.
 
Back
Top