🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 10-11-2013 02:26 PM
(6084 views)
al toHi all
I would like to understand how SAS processes when we give GE or LE on a alphanumeric field. It doesn't give an error, but I would like to know how it handles it.
Eg: IF TEST GE "5000" where test is a character field. What values come true for this condition?
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a000780367.htm
Scroll down to the section entitled "Character Comparisons".
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
http://support.sas.com/documentation/cdl/en/lrcon/62955/HTML/default/viewer.htm#a000780367.htm
Scroll down to the section entitled "Character Comparisons".
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
What may not be immediately obvious is that, at least with ASCII character sets,
'ABC' GE '5000'
is true
Richard