I have a MySQL database that I have performed a couple dumps on. I have these files: dumpA, dumpB, dumpC
dumpA contains all the tables at the time of the dump
dumpB and dumpC contains only table T
Between dumps I truncated table T so dumpA contains the primary keys 1-100 for table T, dumpB 101-200, and dumpC 201-300.
I want to restore table T completely.
How do I import only table T from dumpA which contains other tables?
Once I do that, will importing dumpB truncate table T so that the data from dumpA disappears?