queryStr = "select id,title,content from articles where content like '%%%s%%' limit 0,5" % self.keywd
这样实现的最终sql类似 :
select id,title,content from articles where content like '%记%' limit 0,5
总结:%%代表最终sql语句中只存在一个%
本文共 257 字,大约阅读时间需要 1 分钟。
queryStr = "select id,title,content from articles where content like '%%%s%%' limit 0,5" % self.keywd
这样实现的最终sql类似 :
select id,title,content from articles where content like '%记%' limit 0,5
总结:%%代表最终sql语句中只存在一个%
转载于:https://my.oschina.net/kjpioo/blog/108433