SQL> select * from test;
NAME
--------------------
n,w
nw,
nw,1
nw,12
nw12
已用时间: 00: 00: 00.01
SQL> select * from test where name like '%,%';
NAME
--------------------
n,w
已用时间: 00: 00: 00.01
SQL> select * from test where name like '%,%';
NAME
--------------------
nw,
nw,1
nw,12
那你试试看,转成ascii码行不行。
不过我没有试过。
来顶一下。
SELECT aa FROM bb where aa like '%,%'
where aa COLLATE Chinese_PRC_CS_AS_WS like
试试...