Hello,
I have made a mysql database:
CREATE table links (
id INT NOT NULL AUTO_INCREMENT,
adres VARCHAR(60),
PRIMARY KEY(id));
When i put a new record in de database it get a number automaticly. (1,2,3 ...) But when i remove 2 the records are not reorganize automaticly. Is that possible, maybe without auto_increment. But how??
Can you help me?
Thanks,
Qwark
I have made a mysql database:
CREATE table links (
id INT NOT NULL AUTO_INCREMENT,
adres VARCHAR(60),
PRIMARY KEY(id));
When i put a new record in de database it get a number automaticly. (1,2,3 ...) But when i remove 2 the records are not reorganize automaticly. Is that possible, maybe without auto_increment. But how??
Can you help me?
Thanks,
Qwark