Hi,
I have 2 tables:
tbl_Bcst_T_Ver
tbl_Bcst_T_Prg
A field exists in both called House_Number. The field in _prg is populated uniquely, _Ver is empty. I need to update the contents from _prg into _ver - understanding some records may duplidate (a one to many relationship exists)
I thought the query would do the trick:
UPDATE tbl_Bcst_T_prg
INNER JOIN tbl_Bcst_T_ver ON tbl_Bcst_T_prg.Programme_Table_ID = tbl_Bcst_T_ver.Programme_ID
SET tbl_Bcst_T_ver.House_Number =
[tbl_bcst_t_prg].[house_number];
Anybody any ideas?
Thanks
Tim
I have 2 tables:
tbl_Bcst_T_Ver
tbl_Bcst_T_Prg
A field exists in both called House_Number. The field in _prg is populated uniquely, _Ver is empty. I need to update the contents from _prg into _ver - understanding some records may duplidate (a one to many relationship exists)
I thought the query would do the trick:
UPDATE tbl_Bcst_T_prg
INNER JOIN tbl_Bcst_T_ver ON tbl_Bcst_T_prg.Programme_Table_ID = tbl_Bcst_T_ver.Programme_ID
SET tbl_Bcst_T_ver.House_Number =
[tbl_bcst_t_prg].[house_number];
Anybody any ideas?
Thanks
Tim