*
;

data one;
  input x y z;
cards;
1 2 3
2 3 4
3 4 5
;
run;
data two;
  retain z y x;
  set one;
run;
proc print data=two; run;

*
;