我的数据库模型类中有许多方法可以执行参数化的 SQLSELECT
语句。这些查询中的大多数都包含一个WHERE
带有过滤结果的字段的子句。在默认情况下,我想忽略 where 子句中的比较以获取所有结果。一个例子:
def get_notes(self, pcb_serial_no, note_type=None):
''' Get notes recorded against a PCB unit, optionally filtered by note_type. '''
cursor = self.db.execute('''
SELECT pcb_serial_no, note_type, description, username, note_time
FROM pcb_notes_view
WHERE pcb_serial_no=?
AND COALESCE(?, note_type)=note_type
''',
(pcb_serial_no, note_type,)
)
rows = cursor.fetchall()
return len(rows) > 0 and rows
我正在使用默认参数值None
(映射到NULL
)和COALESCE
. 这是迄今为止我能想到的最好的可读性解决方案(当然是主观的),但我确信这个“默认参数”是一个常见的要求,并且想知道有哪些惯用的方法来实现它?我也不确定COALESCE
在默认情况下是否会对性能产生重大影响,特别是如果该列没有被索引?