Hi,
I don't know your level of database knowledge, but you are joining these tables together on 'client_id' in one SQL statement, right? (I'm assuming your tables all have different types of info for each client_id and you broke it up vertically)If you don't know what I'm talking about, read up on JOINS at a relevant SQL resource.
If you broke up the table horizontally ie.(client_id 1-1000 info in one table, client_id 1001-2000 info in the second, etc...) well, don't do that. That's not necessary unless you have over a million rows at which time, you'd be using a database that could support a MERGE function.