1 2 3 4 5 6 7 8 9 10 11 12 13 14
# sel000020 # # Versions # -------- # 3.22 # 3.23 # # Description # ----------- # Strings. # Testing string comparisons; STRCMP(), =, >, >=, <=, !=. # @r/sel000020.result SELECT 0=0,1>0,1>=1,1<0,1<=0,1!=0,STRCMP("abc","abcd"),STRCMP("b","a"),STRCMP("a","a");