数据库里面存放的数据是“aBcDeF”,查询条件是“abcdef”
请问该怎么写sql语句才能查询到“aBcDeF”
收起
select * from XXXtable where lower(字段名) = "abcdef" 这样写就好了
报告相同问题?