ctype_like_escape.inc
来自「这是linux下运行的mysql软件包,可用于linux 下安装 php + m」· INC 代码 · 共 19 行
INC
19 行
## Bugs: #13046:# LIKE pattern matching using prefix index doesn't return correct result#select @@collation_connection;create table t1 ROW_FORMAT=DYNAMIC select repeat('a',50) as c1 ;insert into t1 values('abcdef');insert into t1 values('_bcdef');insert into t1 values('a_cdef');insert into t1 values('ab_def');insert into t1 values('abc_ef');insert into t1 values('abcd_f');insert into t1 values('abcde_');-- should return ab_defselect c1 as c1u from t1 where c1 like 'ab\_def';-- should return ab_defselect c1 as c2h from t1 where c1 like 'ab#_def' escape '#';drop table t1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?