I have two tables in sql server 2008 R2.
one table has records as follows, this table is called ASTM_Table

and another table called ASTM1 is like this

Astm1 table contains gravity with 0.1 difference while “astm_table” has gravity with a difference of 0.5 (However, this table is the latest)
All i want is to have all those records from astm1 table and merge them in astm_table, but only those records that are not available in astm_table.
For example, in astm_table, gravity 54.1, 54.2, 54.3, 54.4, 54.6, 54.7, 54.8, 54.9 are not available. so i want to get these values from astm1 table and copy them in astm_table.
is it possible and yes then which query would do the job right? Please Help
If I”m understanding you correctly, you just want to insert all the rows from ASTM1, except those already in ASTM_Table. In that case: