pyqt sqlite sql查询 如何处理 like语句 百分号

前端之家收集整理的这篇文章主要介绍了pyqt sqlite sql查询 如何处理 like语句 百分号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的Sqlite相关文章