您好,登錄后才能下訂單哦!
小編這次要給大家分享的是如何使用django orm寫(xiě)exists條件過(guò)濾,文章內(nèi)容豐富,感興趣的小伙伴可以來(lái)了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
要用django的orm表達(dá)sql的exists子查詢,是個(gè)比較麻煩的事情,需要做兩部來(lái)完成
from django.db.models import Exists, OuterRef # 1. 定義子查詢條件 relative_comments = Comment.objects.filter( post=OuterRef('pk'), # 注意外鍵關(guān)聯(lián)方式:post為Comment表的字段,pk表示關(guān)聯(lián)另一表主鍵 ) # 2. 使用annotate和filter共同定義子查詢 Post.objects.annotate( # 使用exists定義一個(gè)額外字段 recent_comment=Exists(recent_comments), ).filter(recent_comment=True) # 在條件中通過(guò)檢查額外字段實(shí)現(xiàn)exists子查詢過(guò)濾
這種方式比較麻煩,有其它簡(jiǎn)便方式的歡迎分享
官網(wǎng)參考: https://docs.djangoproject.com/en/2.1/ref/models/expressions/#filtering-on-a-subquery-expression
補(bǔ)充知識(shí):關(guān)于使用django orm 時(shí)的坑
跨app 時(shí)外鍵報(bào)錯(cuò)
class Host(models.Model): nid = models.AutoField(primary_key=True) hostname = models.CharField(max_length=32, db_index=True) ip = models.GenericIPAddressField(protocol=“ipv4”, db_index=True) port = models.IntegerField() # b = models.ForeignKey(to=“Business”, to_field=‘id') class HostToApp(models.Model): hobj = models.ForeignKey(to=‘Host', to_field=‘nid') aobj = models.ForeignKey(to=‘Application', to_field=‘id') class Application(models.Model): name = models.CharField(max_length=32)
以上 model 都在一個(gè)models 文件下時(shí)不會(huì)報(bào)錯(cuò)。 但是一旦出現(xiàn)跨app 時(shí)會(huì)報(bào)以下錯(cuò)誤:
users.HostToApp.aobj: (fields.E300) Field defines a relation with model ‘Application', which is either not installed, or is abstract.
users.HostToApp.aobj: (fields.E307) The field users.HostToApp.aobj was declared with a lazy reference to ‘users.application', but app ‘users' doesn't provide model ‘a(chǎn)pplication'.
解決方案:
1、
from xxxx.models import Application
2、
class HostToApp(models.Model): hobj = models.ForeignKey(to=‘Host', to_field=‘nid') aobj = models.ForeignKey(to=‘xxxx.Application', to_field=‘id')
第二步很重要
看完這篇關(guān)于如何使用django orm寫(xiě)exists條件過(guò)濾的文章,如果覺(jué)得文章內(nèi)容寫(xiě)得不錯(cuò)的話,可以把它分享出去給更多人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。