Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 45
Program
All possible key combinations


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;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page