日期:2014-05-16  浏览次数:20641 次

让mysql区分大小写的方法
要让mysql查询区分大小写,可以:


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

)