I'm designing a SQL table that should hold the client data.
The client data is exported from another system and already contains a client_ID
that I need to integrate into my client table.
My question is: If I put an exported client_ID
as a primary key and import the data, how should I auto increment the client_ID
on consecutive table inserts by my system?
How should I eliminate the overlap of the client IDs?