使用字典动态构造where子句

问题

你希望创建一个字典来构造动态的where子句并且希望能够在查询语句中使用。

解决

  1. >>> import web
  2. >>> db = web.database(dbn='postgres', db='mydb', user='postgres')
  3. >>> where_dict = {'col1': 1, col2: 'sometext'}
  4. >>> db.delete('mytable', where=web.db.sqlwhere(where_dict), _test=True)
  5. <sql: "DELETE FROM mytable WHERE col1 = 1 AND col2 = 'sometext'">

解释

web.db.sqlwhere takes a Python dictionary as an argument and converts it into a string useful for where clause in different queries. You can also use an optional grouping argument to define the exact gouping of the individual keys. For instance:

web.db.sqlwhere将Python的字典作为参数并且转换为适用于不同的查询语句的where子句的string类型数据。你也可以使用grouping参数来定义链接字典中的key的链接字符。例子如下。

  1. >>> import web
  2. >>> web.db.sqlwhere({'a': 1, 'b': 2}, grouping=' OR ')
  3. 'a = 1 OR b = 2'

grouping 的默认值为 ' AND '.