您好,登錄后才能下訂單哦!
本文實例講述了django框架基于queryset和雙下劃線的跨表查詢操作。分享給大家供大家參考,具體如下:
前面篇隨筆寫的是基于對象的跨表查詢:對象.objects.filter(。。。) 對象.關聯對象_set.all(...) -->反向
基于對象的跨表查詢例如:
book_obj= Book.objects.filter(id=4).first() #注意多了個first print(book_obj) #go 這里得到的是一個models對象 print(book_obj.publish.name) #桔子出版社
這篇隨筆主要寫的是基于雙下劃線的跨表查詢,其本質是使用join連接其他表進行查詢
一對多
def query(request): #正向查詢 ret1=Book.objects.filter(title='西游記').values("publish__name") print(ret1) #<QuerySet [{'publish__name': '榴蓮出版社'}]> print(ret1.first(),type(ret1.first())) #{'publish__name': '榴蓮出版社'} <class 'dict'> 注意key 為 publish__name print(ret1.first()['publish__name']) # 榴蓮出版社 #反向查詢 ret2=Publish.objects.filter(book__title="西游記").values('name') #這里的book是表名稱,book表里面有字段 title print('---------------------------------') print(ret2) #<QuerySet [{'name': '榴蓮出版社'}]> print(ret2.first()['name'])#榴蓮出版社 return HttpResponse('ok')
多對多
#查詢python書的作者的名字和年齡 def query(request): #正向查詢 ret = Book.objects.filter(title="python").values("authors__name","authors__age") print(ret) #注意結果的key #結果 <QuerySet [{'authors__name': 'wang', 'authors__age': 27}, {'authors__name': 'xiao', 'authors__age': 25}, {'authors__name': 'zhang', 'authors__age': 26}]> #反向查詢 ret = Author.objects.filter(book__title="python").values("name","age") print(ret) #區分正向查詢的key #結果 <QuerySet [{'name': 'wang', 'age': 27}, {'name': 'xiao', 'age': 25}, {'name': 'zhang', 'age': 26}]> return HttpResponse('ok')
一對一
例子:查詢名字為 xiao 的gf是什么
def query(request): #正向查詢 ret=Author.objects.filter(name='xiao').values('ad__gf') #Author設置了外鍵到 AuthorDetail print(ret) #<QuerySet [{'ad__gf': '劉詩詩'}]> #反向查詢 ret=AuthorDetail.objects.filter(author__name='xiao').values('gf') print(ret) #<QuerySet [{'gf': '劉詩詩'}]> return HttpResponse('ok')
下面進行跨多表查詢,涉及三個表或者以上
#查詢西瓜出版社出版過的書籍和書籍作者的名字 def query(request): #正向 ret=Book.objects.filter(publish__name="西瓜出版社").values_list("title",'authors__name') print(ret) #<QuerySet [('三國演義', 'zhang'), ('python', 'xiao'), ('python', 'zhang'), ('python', 'wang')]> #反向 ret = Publish.objects.filter(name="西瓜出版社").values_list("book__title","book__authors__age","book__authors__name") print(ret) #<QuerySet [('三國演義', 26, 'zhang'), ('python', 25, 'xiao'), ('python', 26, 'zhang'), ('python', 27, 'wang')]> return HttpResponse('ok')
手機號以11開頭的作者出版過的所有書籍名稱以及出版社名稱
def query(request): #正向 ret = Book.objects.filter(authors__ad__tel__startswith="11").values("title","publish__name") print(ret) #< QuerySet[{'title': 'python', 'publish__name': '西瓜出版社'}, {'title': '三國演義', 'publish__name': '西瓜出版社'}] > #反向 ret = Author.objects.filter(ad__tel__startswith="11").values("book__title","book__publish__name") print(ret) #<QuerySet [{'book__title': '三國演義', 'book__publish__name': '西瓜出版社'}, {'book__title': 'python', 'book__publish__name': '西瓜出版社'}]> return HttpResponse('查詢成功')
希望本文所述對大家基于Django框架的Python程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。