How to filter out the number below start with "8187"? The format is string $CHAR8. Thanks
Example:
81861234
81876789
81886577
where substr(number,1,4) = '8187';
?
View solution in original post
Try
where string ^=: '8187' ;
You can see more about the =: operator at SAS Operators in Expressions
Go to the Character Comparisons link.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.