You're going from a 3rd normal form (possibly higher) to a single table. Generally speaking it's a bad idea in the database world (but - there are exceptions).
However, given your data, something is indeed strange. Why the hell are there 3 autoincrementing identifiers? The identifier for state (primary key) should be the 2 letter code (and nothing else). County should be a FK (state cd) with no primary (imo).
But that's just my opinion. YMMV