What keys do you have in each table?
select tblFInal.* from tblFInal, tblRaw where tblFInal.primary_key = tblRaw.primary_key (or tblRaw.secondar_key, depends on your table structure) will give you the records that already exist in table tblFInal.
select tblFInal.* from tblFInal, tblRaw where tblFInal.primary_key = tblRaw.primary_key (or tblRaw.secondar_key, depends on your table structure) will give you the records that already exist in table tblFInal.