3
I have a table that has a very high turnover of information, that is, many records enter and many leave as well. With this the ID (auto-increment) is much higher than the value of data in the table.
For example, the table is with 530 records and the ID (auto-increment) is at 1250, and these numbers tend to increase relatively quickly.
I wonder if this might cause some slowness or it might be bad in some way for my database and my application. If it causes any trouble, what can I do to make it better?
Note: I don’t know if it changes anything, but the Ids of this table are foreign keys in other tables.
got it, and the maximum number my Quence being an int field can reach is 2,147,483,647? That’s what I found in a survey.
– Raylan Soares