Although using daily in my programming , but never realized about this question :
since the int(unsigned)
data type can hold values from 0 to 4294967295
, what actually happens
If I declare this INT fields to be auto increment and one morning, it just reaches 4294967295
?
The obvious answer will be it should throw an error that cannot insert further, but data never stops comin and we have to store the records that still keep commin. What to do in this case?
Also is declaring int(20) will be large enough than this default limit?
Any suggestions?
Thanks.