Django: show/log ORM sql calls from python shell

后端 未结 7 1163
臣服心动
臣服心动 2020-11-30 16:33

Using the excellent Django-Devserver I\'m finding all kinds of interesting and unexpected SQL calls in my code. I wanted to find where the calls are coming from, and so I\'m

7条回答
  •  南笙
    南笙 (楼主)
    2020-11-30 17:35

    qs = YourModel.objects.all()
    
    qs.query.get_compiler('default').as_sql()
    

提交回复
热议问题