码迷,mamicode.com
首页 > 数据库 > 详细

【Django】执行原生SQL的三种方法 򚛞

时间:2019-08-19 09:23:18      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:queryset   font   sql   default   efault   操作   into   objects   返回   

原文: http://blog.gqylpy.com/gqy/383

"> 如下三种方式

  1. extra结果集修改器,一种提供额外查询参数的机制
  2. raw执行原始SQL返回模型实例
  3. connection/connections直接执行自定义SQL(此方法不依赖model)
1.extra示例:
# extra
# 在QuerySet的基础上继续执行子语句
# extra(self, select=None, where=None, params=None, tables=None, order_by=None, select_params=None)

# select和select_params是一组,where和params是一组,tables用来设置from哪个表
# Entry.objects.extra(select={'new_id': "select col from sometable where othercol > %s"}, select_params=(1,))
# Entry.objects.extra(where=['headline=%s'], params=['Lennon'])
# Entry.objects.extra(where=["foo='a' OR bar = 'a'", "baz = 'a'"])
# Entry.objects.extra(select={'new_id': "select id from tb where id > %s"}, select_params=(1,), order_by=['-nid'])

举个例子:
models.UserInfo.objects.extra(
                    select={'newid':'select count(1) from test01_usertype where id>%s'},
                    select_params=[1,],
                    where = ['age>%s'],
                    params=[18,],
                    order_by=['-age'],
                    tables=['test01_usertype']
                )
"""相当于:
select 
    test01_userinfo.id,
    (select count(1) from test01_usertype where id>1) as newid
from test01_userinfo,test01_usertype
where 
    test01_userinfo.age > 18
order by 
    test01_userinfo.age desc
"""
2.raw示例
models.UserInfo.objects.raw('select * from test01_UserInfo')
3.直接执行自定义SQL
# 执行原生SQL
# 更高灵活度的方式执行原生SQL语句

from django.db import connection, connections
cursor = connection.cursor()
# cursor = connections['default'].cursor()

cursor.execute("""SELECT * from auth_user where id = %s""", [1])

# 插入数据
cursor.execute("insert into table(field) value('xx')")

# 更新数据
cursor.execure("update table set name='xx' where name='xxx'")

# 删除数据
cursor.execure("delete from table where name='xx'")

# 查询操作
cursor.execute("select * from table")


# -- 取查询结果(返回元组) --

# 返回结果行游标直读向前,读取一条
row = cursor.fetchone()

# 读取所有
cursor.fetchall()

"

原文: http://blog.gqylpy.com/gqy/383

【Django】执行原生SQL的三种方法 򚛞

标签:queryset   font   sql   default   efault   操作   into   objects   返回   

原文地址:https://www.cnblogs.com/gqy02/p/11375033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!