Is it possible, using only SAS syntax, to update a single existing dataset?
The SQL equivalent would be:
UPDATE myTable
SET city = 'Paris'
WHERE id = 22
P.S.
I know this could be done using proc sql. I'm new to SAS and trying to learn the SAS syntax.