标签: sql postgresql python-3.x psycopg2
我正在使用psycopg2进行python,我想跟踪数据库的执行时间。
starttime = time.time() cursor.execute(sql_statement, args) print(time.time() - starttime)
执行sql后立即返回cursor.execute()函数吗?
cursor.execute()
如果是这样,我如何跟踪sql查询时间?