Hi,
let's say I have a table whose primary key is "id".
Is there a way to increment the value of id which should start with "0301161234" for exemple?
Ie, at the beginning, the table is empty and as soon as it begins being filled in, the first "id" will be "0301161234", the following one will be "0301161235", and so on...
Can I do it directly in a SQL statement or shall I try to do it with some PHP code?
Nobru