ORM执行原生SQL语句
Posted wt7018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ORM执行原生SQL语句相关的知识,希望对你有一定的参考价值。
from django.db import connection, connections cursor = connection.cursor() # cursor = connections[‘default‘].cursor() cursor.execute("""SELECT * from auth_user where id = %s""", [1]) ret = cursor.fetchone()
有点像pymysql
以上是关于ORM执行原生SQL语句的主要内容,如果未能解决你的问题,请参考以下文章
2022-01-19.tortoise-orm执行原生sql语句