/*create new column called points_flag using case operator*/ proc sql; select *, case when points < 20 then 0 else 1 end as points_flag from ...
確定! 回上一頁