需要有关查找所有推荐列表的建议包含http://www.example.com/ 大写字母
等链接select * from testimonial3 where detail_text like '%http://www.example.com/Hind-global'
select * from testimonial3 where detail_text like '%http://www.example.com/Apple'
答案 0 :(得分:1)
SELECT * FROM testimonial3 WHERE detail_text REGEXP BINARY 'http://www.example.com/[A-Z]{1}';