- 我有这样一个函数:
func_report_incoming_detail(int,varchar(33))
, 如何使用Python拼接sql 语句
sql = "select func_report_incoming_detail({},{})".format(location_id or 'null', '2020-01-01' or 'all')
- pg函数传参的话还是尽量不传入null值,比如字符串和null 还挺难同时满足sql拼接
func_report_incoming_detail(int,varchar(33))
, 如何使用Python拼接sql 语句 sql = "select func_report_incoming_detail({},{})".format(location_id or 'null', '2020-01-01' or 'all')