码迷,mamicode.com
首页 > 其他好文 > 详细

django_orm查询性能优化

时间:2018-06-12 10:29:42      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:支持   let   upd   **kwargs   div   objects   create   delete   obj   

查询操作和性能优化

1.基本操作

  增

models.Tb1.objects.create(c1=‘xx‘, c2=‘oo‘)  增加一条数据,可以接受字典类型数据 **kwargs

obj = models.Tb1(c1=‘xx‘, c2=‘oo‘)
obj.save()

 查

models.Tb1.objects.get(id=123)         # 获取单条数据,不存在则报错(不建议)
models.Tb1.objects.all()               # 获取全部
models.Tb1.objects.filter(name=‘seven‘) # 获取指定条件的数据
models.Tb1.objects.exclude(name=‘seven‘) # 获取指定条件的数据

 删

models.Tb1.objects.filter(name=‘seven‘).delete() # 删除指定条件的数据

 改
models.Tb1.objects.filter(name=‘seven‘).update(gender=‘0‘)  # 将指定条件的数据更新,均支持 **kwargs
obj = models.Tb1.objects.get(id=1)
obj.c1 = ‘111‘
obj.save()                                                 # 修改单条数据

  

django_orm查询性能优化

标签:支持   let   upd   **kwargs   div   objects   create   delete   obj   

原文地址:https://www.cnblogs.com/liujiliang/p/9171675.html

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