Hi,
I am attempting to use a PROC UPDATE query from SAS to update a table in an Access database.
Code as follows;
proc SQL;
UPDATE mydblib.tbl_MPSmisuse m
SET name=(select p.name from platesmatch1 p
WHERE m.id=p.id)
where name in (select name from platesmatch1);
quit;
The code works, however no rows are updated. Any ideas?
ta
I am attempting to use a PROC UPDATE query from SAS to update a table in an Access database.
Code as follows;
proc SQL;
UPDATE mydblib.tbl_MPSmisuse m
SET name=(select p.name from platesmatch1 p
WHERE m.id=p.id)
where name in (select name from platesmatch1);
quit;
The code works, however no rows are updated. Any ideas?
ta