I have table with fields like id,title,no,url.
I want to auto increment id field
the table already has 1000 records in it with already some assigned ids
Now i want to auto increament the records that are newly inserted only .i do not want to auto increment the already present 1000 records .
Is there way i can do this???
ALTER TABLE tablename MODIFY id integer (11) auto_increment;