mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2026-01-11 17:00:04 +00:00
version 2.0
2020-05-29, bug fix for the WORK and USER library
This commit is contained in:
10
SQLinDS/999_test/test1.sas
Normal file
10
SQLinDS/999_test/test1.sas
Normal file
@@ -0,0 +1,10 @@
|
||||
proc sort data=sashelp.class out=test1;
|
||||
by age name;
|
||||
run;
|
||||
|
||||
data class;
|
||||
set %SQL(select * from sashelp.class order by age, name);
|
||||
run;
|
||||
|
||||
proc compare base = test1 compare = class;
|
||||
run;
|
||||
Reference in New Issue
Block a user