mysql对后空格不敏感 https://blog.csdn.net/lzupb/article/details/73530589 结论:查询条件中建议对字符串做trim处理,在数据入库的时候最好也做trim处理. example1: 表里面的字段值都不带空格,where查询条件里面带或不带空格. 例如:key=‘test’ 查询条件a:where key=’test ‘,查询结果是ok的 查询条件b:where key=’ test’, 查询结果是空的 查询条件c:where key=’tes…