hey, i dont know much about mysql, but lemme know if this can me done. how do i add an auto-incrament increasing field (like for an unique id number) in an existing db ? thanks !
you can only have one auto-increment field per table. To add it, you would use an alter command
alter table table_name add column_name AUTO_INCREMENT;