From: <[EMAIL PROTECTED]>
> Jason, > > Unless UniData 6.0 supports a 'BETWEEN' relational operator, I recommend to you to use the second scenario, "Case (val >= 6000 AND val <= 6009)". I'm using UniData 5.1 and 'BETWEEN' in not a valid relational operator in UniBasic. UniQuery, yes... You could check the code generated, but I tend to write a statement using just the greater_than operator, rather than the greater_than_or_equal_to, feeling that the number of actual operations is less. I also tend to use the explicitly test operators rather than those which can be test or assignment, but that's just style and open for debate. So, I'd use: CASE ((VAL GT 5999) AND (VAL LT 6010)) Rgds. -- u2-users mailing list [EMAIL PROTECTED] http://www.oliver.com/mailman/listinfo/u2-users
