SAS BASE
Crambible / sas 문제 38
표독's
2016. 1. 29. 15:15
*참조 : 26
1. by IDNumber Expenses;
해석이 까다로운 문제였다.
sorts the data sequentially by ascending expense values within each ascending IDNUMBER value
IDNUMBER에 대하여 오름차순 하고 / 그 안에서 Expenses에 대해 오름차순하는 것이다.
2. SORT BY
BY는 아무런 ORDER기준이 정해지지 않으면 기본적으로 ASCENDING으로 정렬한다.