sql模糊查询

来源:互联网 发布:popen python 编辑:程序博客网 时间:2024/05/21 19:39
create table test(    name varchar(20))select name from test where name like 'aa%';select name from test where name like 'aa%' and name <> 'aab';
在geohash中用于查找。