How does MySQL Auto Increment work?
I was just creating a new table using MySQL Query Browser, and noticed there's a tick under Auto Increment Column. How does that work? When adding to the database programatically, do I just add a number, and then the database automatically increments that number? Everytime a NEW user registers on my site, I want their Customer ID (integer only) to auto increment, so I don't have to try and randomly generate a unique number. Can this be done simply? Thank you! When adding to the database programatically, do I just add a number, and then the database automatically increments that number? Yes,