Specifies whether to use SAS column labels or SAS column names as the DBMS column names during output processing.
Valid in: | DATA and PROC steps |
Default: | NO |
Supports: | All |
data new; label c1='deptnum'; c1=001; run; data mydblib.mydept(dblabel=yes); set new; run; proc print data=mydblib.mydept; run;