select * from table_name where a like 'a%'select * from table_name where a like 'A%'
select * from table_name where binary a like 'a%'select * from table_name where binary a like 'A%'
create table table_name(a varchar(20) binary)
上一篇:常用的JS页面跳转代码调用大全
下一篇:PHP分页类使用实例演示