chetana bhargav wrote:
Auto increment seems to return a unsigned long long is there any way for it to make it as 32 bit, as I am depending on this feilds to generate unique id, and i have a constraint fot the id to be 32 bit only.
Autoincrement field starts at 1 and increments by 1 with each new record. As long as you don't have billions of records, the value is going to fit in 32 bit.
Igor Tandetnik

