Jump to content

[SOLVED] How do you use auto_increment in perticular format


adi5402

Recommended Posts

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

 

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.