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 Link to comment https://forums.phpfreaks.com/topic/124101-solved-how-do-you-use-auto_increment-in-perticular-format/ 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. Link to comment https://forums.phpfreaks.com/topic/124101-solved-how-do-you-use-auto_increment-in-perticular-format/#findComment-640702 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. Link to comment https://forums.phpfreaks.com/topic/124101-solved-how-do-you-use-auto_increment-in-perticular-format/#findComment-640708 Share on other sites More sharing options...
adi5402 Posted September 13, 2008 Author Share Posted September 13, 2008 ya man that worked great thanks Link to comment https://forums.phpfreaks.com/topic/124101-solved-how-do-you-use-auto_increment-in-perticular-format/#findComment-640748 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.