📄 sort1.sas
字号:
options nodate nonumber;
title 'Sort of data';
filename sort1 'd:\sasbook\hong1.dbf';
proc dbf db3=sort1;
title2 '1. Sort, x6---Ascending';
proc sort;
by x6;
proc print;
run;
title2 '2. Sort, x5---Descending,x6---Ascending';
proc sort;
by descending x5 x6;
proc print;
run;
title2 '3. Sort, x5,x6---Descending';
proc sort;
by descending x5 descending x6;
proc print;
run;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -