Province table:
provinceid = autoincrement tinyint(3)
province = varchar(50)
City table:
cityid = autoincrement tinyint(3)
city = varchar(50)
provinceid = tinyint(3)
My issue is that I have 127 rows of data in the city table and can't add anymore.
Is this a problem in MySQL or is there something wrong with my system?
Any ideas or where or how to fix this error:
#1264 - Out of range value adjusted for column 'cityid' at row 1