adi5402 Posted September 13, 2008 Share Posted September 13, 2008 I have s simple question how do i enter data in a form were the primary field is set to auto increment but i want the number in a given formart say starting from 10050 up and has an A at the end So it will be soemthing like A100050 for my first enty any ideas Quote Link to comment Share on other sites More sharing options...
Mchl Posted September 13, 2008 Share Posted September 13, 2008 Autoincrement column can only be INT so no letters. To set up a starting value you need to do query like this one ALTER TABLE tablename AUTO_INCREMENT = 100050 Note, that autoincrement columns should be used only for internal database stuff. No real life numbers should be generated like that. Quote Link to comment Share on other sites More sharing options...
adi5402 Posted September 13, 2008 Author Share Posted September 13, 2008 So if i change the first one to 100050 the next entry will automaticly beceome 100051 im trying to gernerate invoices how can i assign them number that way. Quote Link to comment Share on other sites More sharing options...
adi5402 Posted September 13, 2008 Author Share Posted September 13, 2008 ya man that worked great thanks 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.