blob: dde3a18bfb59ae6c476063a69833051e3a2e2e40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# sel000026
#
# Versions
# --------
# 3.22
# 3.23
#
# Description
# -----------
# Strings.
# Testing string comparisons; LIKE, '%'.
#
@r/sel000026.result SELECT 'abc' LIKE '%c','abcabc' LIKE '%c', "ab" LIKE "", "ab" LIKE "a", "ab" LIKE "ab";
|