sql 里面substring函数
的有关信息介绍如下:不一定要用 SUBSTRING,直接用LIKE更简单select id,name from kehuxinxi_table where telephone like '%1111'如果一定要用SUBSTRING 那么,应该用下面类似的语句,不过,这种写法的速度是最慢的,而且还没有考虑长度不够的问题select id,name from kehuxinxi_table where substring(telephone, 8, 4) = '1111'