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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.