python中怎么讲sql的where语句查询结果录入到列表中
发布网友
发布时间:2022-04-24 07:28
我来回答
共1个回答
热心网友
时间:2022-04-08 10:27
>>> base = """("%(k)s" = '%(v)s')"""
>>> print ' and '.join([base % dict(k=k, v=v) for k,v in dict(name='tim', email='tim@126.com').items()])
("email" = 'tim@126.com') and ("name" = 'tim')
>>>
另外: 强烈建议不采用拼接字符串的方式定义SQL,而是采用参数