summaryrefslogtreecommitdiff
path: root/mysql-test/t/sel000020.test
blob: f3835ac3c2b6df2e600ef39cb74934e13ecb4166 (plain)
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");