WHERE statements in SAS
July 2nd, 2008
1 2 3 4 5 | where salary between 2000 and 50000; where city contains 'bay'; where x is missing and y is not missing; where name like 'S%'; *% for any # of chars _ for one where name *= 'smith'; * select based on soundex algor. |
Leave a Reply