查看django执行的sql语句及消耗时间的两种方法
程序员文章站
2024-02-07 14:02:10
下面介绍两种查看django 执行的sql语句的方法。
方法一:
queryset = apple.objects.all()
print queryset....
下面介绍两种查看django 执行的sql语句的方法。
方法一:
queryset = apple.objects.all() print queryset.query select `id`, `name` from `apple`
该方法只能查看select语句,但不能查看其他更新保存的语句,会报错。
也就是说只有 queryset 有query方法。接下来看第二种方法。
方法二:
from django.db import connection print connection.queries [{u'time': u'0.098', u'sql': u'select `app_detail`.`app_id` from `app_detail` where `app_detail`.`id` = 20 '}]
会打印所有执行过的sql语句及消耗的时间,非常有用。
如果有多个数据库,可以使用以下方法选择数据库:
from django.db import connections c = connections['fruits'] print c.queries
选择连接'fruits'数据库,打印相关的sql语句。
以上这篇查看django执行的sql语句及消耗时间的两种方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。