Hey guys-
I'm getting hung up on something here- I have a table which I import all my raw data into. I then need to move that data into other tables (split it up and move some into 1 table, other into another, etc). I have the relationships formed on those new tables...but- I'm getting stuck on teh query to do it.
The raw data is a combination of new records coming in, as well as old records which may or may not be changed from the existing records. I know I need to do an update query- so that it will update the existing records. However, how do I handle the new records? Probably an append query, I'm assuming. So the question is this- do I have to write an if/then statement to do both the update and append queries at the same time? How do I make the query determine if it's an existing record, update it, otherwise if it's a new record, add it? Any examples you can give would be wonderful!
Thank you!
I'm getting hung up on something here- I have a table which I import all my raw data into. I then need to move that data into other tables (split it up and move some into 1 table, other into another, etc). I have the relationships formed on those new tables...but- I'm getting stuck on teh query to do it.
The raw data is a combination of new records coming in, as well as old records which may or may not be changed from the existing records. I know I need to do an update query- so that it will update the existing records. However, how do I handle the new records? Probably an append query, I'm assuming. So the question is this- do I have to write an if/then statement to do both the update and append queries at the same time? How do I make the query determine if it's an existing record, update it, otherwise if it's a new record, add it? Any examples you can give would be wonderful!
Thank you!