As featured in: Data Management Solutions Using SAS Hash Table Operations: A Business Intelligence Case Study , and built from this github repository.
Chapter 6 Sample from Games.sas
1 /* "Chapter 6 Sample from Games.sas" from the SAS Press book
2  Data Management Solutions Using SAS Hash Table Operations:
3  A Business Intelligence Case Study
4 */
5 
6 data Sample_games (keep = Date Home_SK Away_SK) ;
7  set bizarro.Games ;
8  where League = 1 and DayOfWeek = 1 ;
9 run ;