标签:
select * from table where target_text like "3";
查找出来的都是target_text 为 3 的数据
select * from table where target_text like "%3%";
查找出来的都是target_text 包含 3 的数据
sql模糊查找like
原文地址:http://www.cnblogs.com/huhuuu/p/4950304.html