首頁 >資料庫 >mysql教程 >让mysql区分大小写的步骤

让mysql区分大小写的步骤

WBOY
WBOY原創
2016-06-07 16:15:541368瀏覽

让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 )

让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

)

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn