Saturday, April 27, 2024
No menu items!
HomeData Analytics and VisualizationSAS: Using UPDATE in PROC SQL

SAS: Using UPDATE in PROC SQL

In PROC SQL, the UPDATE statement is used to modify existing values of columns in a table.

The syntax of the UPDATE statement is as follows :

PROC SQL;
UPDATE table_name
SET column1 = value1, column2 = value2, …
WHERE condition;
QUIT;

To read this article in full, please click here

Read MoreListenData

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments