I have an existing table with about 10 attributes and columns for 5 years of data. I want to take another table with similar attributes but only one year of data and update the first table. This one year is for a new year which does not exist in the first table. For example:
Table 1
attr 1
attr 2
attr 3
...
2005
2006
2007
2008
2009
Table 2
attr 1
attr 2
attr 3
...
2010
The problem is that the combinations of the attributes will be slightly different in both tables so I cannot join them (equi, left or right) at all.
This might be an easy thing but I just can't figure it out.
Any ideas?
thanks,
-Eric
Table 1
attr 1
attr 2
attr 3
...
2005
2006
2007
2008
2009
Table 2
attr 1
attr 2
attr 3
...
2010
The problem is that the combinations of the attributes will be slightly different in both tables so I cannot join them (equi, left or right) at all.
This might be an easy thing but I just can't figure it out.
Any ideas?
thanks,
-Eric