right, to explain it a bit more, lets say the tables are setup this way
date, sequence, area, resolution, extra1, extra2, extra3
date, sequence, name, lat, long, extra1, extra2, extra3
date, sequence, amount, type, extra1, extra2, extra3
the "extra" fields are actaully called something else, I just don't need that information in the new table.
so then I have a new table I have created with just the fields I want
date, sequence, area, resolution, name, lat, long, amount, type
Now, what I want to do is to query each of the 3 tables and then "join" the information together to create the new record in the new table, based on the date and sequence number of each old table. The problem seems to be that I have about 20,000 records in each table so it takes so much time that sometimes it appears to crash mysql, and other times it times out on me. That says to me that I am doing something wrong. The good thing is that this only has to be done once a night.