summaryrefslogtreecommitdiff
path: root/mysql-test/t/sel000023.test
blob: d4b62603c4a4e333bc91737d0ca34f0fc56f2beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# sel000023
#
# Versions
# --------
#   3.22
#   3.23
#
# Description
# -----------
# Strings.
# Testing string comparisons; LIKE, NOT LIKE, '%'.
#

@r/sel000023.result SELECT "abc" LIKE "a%", "abc" NOT LIKE "%d%", "a%" LIKE "a\%","abc%" LIKE "a%\%","abcd" LIKE "a%b_%d", "a" LIKE "%%a","abcde" LIKE "a%_e","abc" LIKE "abc%";