F/Q查詢 |
測試表mysql
from django.db import models # Create your models here. class MyCharField(models.Field): def __init__(self,max_length,*args,**kwargs): self.max_length = max_length super().__init__(max_length=max_length,*args,**kwargs) def db_type(self, connection): return 'char(%s)'%self.max_length class Product(models.Model): name = models.CharField(max_length=32) # 都是類實例化出來的對象 price = models.DecimalField(max_digits=8,decimal_places=2) maichu = models.IntegerField() kucun = models.IntegerField() info = MyCharField(max_length=32,null=True) # 改字段能夠爲空 choices = ((1,'男'),(2,'女'),(3,'其餘')) gender = models.IntegerField(choices=choices,default=2)
F查詢git
res = models.Product.objects.filter(maichu__gt=F('kucun')) print(res) 將全部的商品的價格提升100塊 models.Product.objects.update(price=F('price')+100) 將全部商品的名字後面都加一個爆款 from django.db.models.functions import Concat from django.db.models import Value models.Product.objects.update(name=Concat(F('name'),Value('爆款')))
Q查詢sql
res = models.Product.objects.filter(price=188.88,name='連衣裙爆款') print(res) from django.db.models import F, Q res = models.Product.objects.filter(Q(price=188.88),Q(name='連衣裙爆款')) # and res = models.Product.objects.filter(Q(price=188.88)|Q(name='連衣裙爆款')) # or res = models.Product.objects.filter(Q(price=188.88)|~Q(name='連衣裙爆款')) # not 混合使用 須要注意的是Q對象必須放在普通的過濾條件前面 res = models.Product.objects.filter(~Q(name='連衣裙爆款'),price=188.88) # not print(res) Q對象補充(******) from django.db.models import F, Q q = Q() q.connector = 'or' # 經過這個參數能夠將Q對象默認的and關係變成or q.children.append(('price',188.88)) q.children.append(('name','高跟鞋爆款')) res = models.Product.objects.filter(q) # Q對象查詢默認也是and print(res)
事務 |
事務的ACID 數據庫
from django.db import transaction from django.db.models import F with transaction.atomic(): # 在with代碼塊兒寫你的事務操做 models.Product.objects.filter(id=1).update(kucun=F('kucun')-1) models.Product.objects.filter(id=1).update(maichu=F('maichu')+1) # 寫其餘代碼邏輯 print('hahah')
only 與 defer |
only(‘name’)返回的結果是一個對象,它比如先從數據庫把數據的name這個字段取出來了,你能夠經過句點符點出對象的name屬性,固然經過對象也能夠點出對象的其餘屬性,可是此時注意,由於你以前已經從數據庫django
取出的name屬性,因此此時點name不須要再從數據庫查詢而是直接返回結果,可是其餘的屬性則相反,須要從數據庫取出結果返回。app
defer(‘name’)和only如出一轍,只是返回的結果是排除了name字段,也就是點name是要從數據庫取,其餘的都不須要,由於已經取出了。學習
only與defer 結果拿到的是一個對象 二者是相反的
res = models.Product.objects.values('name') res = models.Product.objects.only('name') res = models.Product.objects.defer('name') for i in res: print(i.name)
choice測試
首先自定義了一個字段類型MycharField, 在下方的class Product 類中有一個gender字段,字段中的choice數據比較特殊,它比如以前咱們學習mysql中的枚舉對象,多選一,首先提早準備選項choices,在字段內部在用choices字段接收。atom
經過實例化對象點gander屬性返回的結果是一個數字,也就是choices容器中性別對應的數字。若是須要獲取數字所表示的性別字符串,可使用 res.get_gender_display() 方法!spa
class MyCharField(models.Field): def __init__(self,max_length,*args,**kwargs): self.max_length = max_length super().__init__(max_length=max_length,*args,**kwargs) def db_type(self, connection): return 'char(%s)'%self.max_length class Product(models.Model): name = models.CharField(max_length=32) # 都是類實例化出來的對象 price = models.DecimalField(max_digits=8,decimal_places=2) maichu = models.IntegerField() kucun = models.IntegerField() info = MyCharField(max_length=32,null=True) # 改字段能夠爲空 choices = ((1,'男'),(2,'女'),(3,'其餘')) gender = models.IntegerField(choices=choices,default=2) def __str__(self): return '商品對象的名字:%s'%self.name
res = models.Product.objects.filter(id=1).first() print(res.gender) print(res.get_gender_display()) # 獲取編號對應的中文註釋 models.Product.objects.create(...gender=1)