quadrant Posted April 13, 2010 Share Posted April 13, 2010 I want to change the ClientID to start at a higher number than 1. Is this possible? If so how can i change it? Thanks 0 Quote Link to comment Share on other sites More sharing options...
othellotech Posted April 14, 2010 Share Posted April 14, 2010 simply read the mysql manual on auto-increment fields 0 Quote Link to comment Share on other sites More sharing options...
robb3369 Posted April 14, 2010 Share Posted April 14, 2010 First verify your current highest client id: SELECT max(id) FROM tblclients Then use the following to set the next client id # (which MUST be higher than the above result + 1)... ALTER TABLE tblclients AUTO_INCREMENT=xxx 0 Quote Link to comment Share on other sites More sharing options...
quadrant Posted April 14, 2010 Author Share Posted April 14, 2010 Thanks Guys! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.