The following SAS program is submitted:
Data sasuser.history;
Set sasuser.history(keep=state x yRename = (state=ST));
Total=sum(x, y);
Run;
The SAS data set SASUSER.HISTORY has an index on the variable STATE.
Which describes the result of submitting the SAS program?