Type : SASHELP
Les données proviennent de la table exemple standard SASHELP.CLASS.
| 1 | PROC SQL noprint; |
| 2 | select /* Add required SQL syntax here */ |
| 3 | from sashelp.class; |
| 4 | /* Add %LET statement here */ |
| 5 | QUIT; |
| 1 | options nosource; |
| 2 | %put ======================; |
| 3 | %put Number of Students: &NUM_STUDENTS; |
| 4 | %put Student List: &STUDENT_LIST; |
| 5 | %put ======================; |
| 6 | options SOURCE; |