Is it possible to natively auto-increment letters in MySql? If not can you suggest and alternative based on the description of my application below?
Background:
I am building a Warehouse management application. In order to locate items within the warehouse I think I will number shelf columns 1,2,3.. and shelf rows with a,b,c,...aa,ab,ac.... To locate a particular cell in a shelf you would get a combination of the two, for exmaple, the widgets are located at '4d'. To do this I will have a ShelfColumn table with an auto-incrementing primary keys and a ShelfRow table with auto-incrementing letters. An associative table will join the two to form the unique shelf reverences to locate my goods.