varchar字段,属性设置了binary,有个值为test
SQL:
select * from table where id='test ';可以得到记录问题是我不想当尾部有包含空格的可以查询得到如果不通过where id = binary 'test ';是否还有其他办法?谢谢!

解决方案 »

  1.   


       建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式http://topic.csdn.net/u/20091130/20/8343ee6a-417c-4c2d-9415-fa46604a00cf.html
       
       1. 你的 create table xxx .. 语句
       2. 你的 insert into xxx ... 语句
       3. 结果是什么样,(并给以简单的算法描述)
       4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。   
      

  2.   

    汗,如下,……
    MYSQL5.1,MYISAM表名 :test,仅一个字段 a,varchar(15),里面只有一笔记录who (who后面有一个空格)使用select * from test where a='who'可以查询出记录如何不在使用
    where a = binary 'who'

    where a like 'who'能获得想要的结果,即记录尾部有空格和无空格认为是不同记录
      

  3.   

    select * from table where id='test ' and  len(rtrim(id))=len(id);
      

  4.   

    还是要通过SQL来处理就是了,没办法通过字段或数据库的设置来解决?