version 2.0

2020-05-29,
bug fix for the WORK and USER library
This commit is contained in:
yabwon
2020-05-29 16:04:03 +02:00
parent af60e31b56
commit 20c021660a
5 changed files with 75 additions and 6 deletions

View 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;