`

让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

)

0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics