queryStr = "select id,title,content from articles where content like '%%%s%%' limit 0,5" % self.keywd sql
這樣實現的最終sql相似 : it
select id,title,content from articles where content like '%記%' limit 0,5 select
總結:%%表明最終sql語句中只存在一個% sql語句