一 建表时注意
create table some_table( str char(20) binary )
二 查询注意
select * from some_table where binary str='abc'
select * from some_table where binary str='ABC'
``
一 建表时注意
create table some_table( str char(20) binary )
二 查询注意
select * from some_table where binary str='abc'
select * from some_table where binary str='ABC'
``