Hi all,
I might be losing my mind or do not understand how ObjectScript does string comparisons, but the following does not look right to me.
Is it really possible that you can't compare non-numerical strings other than with an equals or not equals?
USER>w ("45" < "46") 1 USER>w ("45" > "46") 0 USER>w ("V45" < "V46") 0 USER>w ("V45" > "V46") 0 USER>w ("V45" <= "V46") 1 USER>w ("V45" >= "V46") 1
In Python: