Is there any way to insert the row number of a row as it is inserted in MySQL? Something like:
INSERT INTO users SET uid=ROWNUMBER(), email="[email protected]";
If not, is there any other way that you would suggest to create a uid based on the entry number?
Thanks!