Mysql查询不区别大小写方法 发表于 2011-11-20 更新于 2022-11-07 分类于 PHP开发 使用upper或lower函数,如,查询表table1,条件是actor字段模糊查询 select * from table1 where upper(actor) like '%AAA%'; 当然,我们得先在程序中把like的值也全部转为大写