Online File
Rick Aster: Professional SAS Programming Shortcuts: Contents
proc sql; create table work.sizes as select distinct size from work.stock; create table work.styles as select distinct style from work.stock; create table work.colors as select distinct color from work.stock; create table work.comb as select size, style, color from work.sizes, work.styles, work.colors order by size, style, color; quit;