当前位置:Gxlcms > mysql > 让mysql区分大小写的步骤

让mysql区分大小写的步骤

时间:2021-07-01 10:21:17 帮助过:26人阅读

让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

)

人气教程排行