December 2014
Intermediate to advanced
858 pages
40h 10m
English
units=units*4
|
Method of Updating Table
|
Example
|
|---|---|
|
update all (or a subset
of) rows in a column with the same expression
|
proc sql;
update work.payrollmaster_new
set salary=salary*1.05
where jobcode like '__1'; |
|
update different rows in a column with different expressions ... |
Read now
Unlock full access