queryStr = "select id,title,content from articles where content like '%%%s%%' limit 0,5" % self.keywd
这样实现的最终sql类似 :
select id,content from articles where content like '%记%' limit 0,5
总结:%%代表最终sql语句中只存在一个%
原文链接:https://www.f2er.com/sqlite/201486.html