If I were to go the way that I'm thinking with 20 + queries my insert query would look like
INSERT INTO tbltolasinventory2 ( TimeStamp, NAV_PN, AVL_781, INT_781, RIP_781 ) SELECT tbltolasstockfile.TimeStamp, tbltolasstockfile.NAV_PN, tbltolasstockfile.ON_HND, tbltolasstockfile.INTRANS, tbltolasstockfile.RIP_QTY FROM tbltolasstockfile WHERE (((tbltolasstockfile.WHSE)='781'));
and I have an update query that I'm playing with that seems to have updated some data but threw my server into a tizzy and I had to restart apache and mysql so I don't think it's the best way to do what I'm trying to do...
update tbltolasinventory2,tbltolasstockfile set tbltolasinventory2.AVL_770 = tbltolasstockfile.ON_HND where
tbltolasinventory2.NAV_PN = tbltolasstockfile.NAV_PN AND tbltolasstockfile.WHSE = '770';