您好,登錄后才能下訂單哦!
這篇文章主要介紹了Django中ORM練習題的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
1.modles中表結構
#出版社 class Publisher(models.Model): name = models.CharField(max_length=32) city = models.CharField(max_length=32) def __str__(self): return "<Publisher object: {} {}>".format(self.id, self.name) #書籍 class Book(models.Model): title = models.CharField(max_length=32) publish_date = models.DateField(auto_now_add=True) price = models.DecimalField(max_digits=5,decimal_places=2) memo = models.TextField(null=True) #創建外鍵,關聯Publisher Publisher = models.ForeignKey(to='Publisher') def __str__(self): return "<Book object: {} {}>".format(self.id, self.title #作者 class Author(models.Model): name = models.CharField(max_length =32) age = models.IntegerField() phone = models.CharField(max_length=11) #創建多對多關聯 books = models.ManyToManyField(to='Book') def __str__(self): return "<Author object: {} {}>".format(self.id, self.name)
2.題目
""" 查找所有書名里包含金老板的書 查找出版日期是2018年的書 查找出版日期是2017年的書名 查找價格大于10元的書 查找價格大于10元的書名和價格 查找memo字段是空的書 查找在北京的出版社 查找名字以沙河開頭的出版社 查找“沙河出版社”出版的所有書籍 查找每個出版社出版價格最高的書籍價格 查找每個出版社的名字以及出的書籍數量 查找作者名字里面帶“小”字的作者 查找年齡大于30歲的作者 查找手機號是155開頭的作者 查找手機號是155開頭的作者的姓名和年齡 查找每個作者寫的價格最高的書籍價格 查找每個作者的姓名以及出的書籍數量 查找書名是“跟金老板學開車”的書的出版社 查找書名是“跟金老板學開車”的書的出版社所在的城市 查找書名是“跟金老板學開車”的書的出版社的名稱 查找書名是“跟金老板學開車”的書的出版社出版的其他書籍的名字和價格 查找書名是“跟金老板學開車”的書的所有作者 查找書名是“跟金老板學開車”的書的作者的年齡 查找書名是“跟金老板學開車”的書的作者的手機號碼 查找書名是“跟金老板學開車”的書的作者們的姓名以及出版的所有書籍名稱和價錢 """ 題目
3.測試數據
-- ---------------------------- -- Records of app01_author -- ---------------------------- INSERT INTO `app01_author` VALUES ('1', '金老板', '18', '15512351234'); INSERT INTO `app01_author` VALUES ('2', '小哪吒', '20', '15312341234'); INSERT INTO `app01_author` VALUES ('3', 'Alex', '73', '15512341234'); -- ---------------------------- -- Records of app01_publisher -- ---------------------------- INSERT INTO `app01_publisher` VALUES ('1', '沙河出版社', '北京'); INSERT INTO `app01_publisher` VALUES ('2', '西二旗出版社', '北京'); INSERT INTO `app01_publisher` VALUES ('3', '張江出版社', '上海'); INSERT INTO `app01_publisher` VALUES ('4', '沙河出版社', '上海'); -- ---------------------------- -- Records of app01_book -- ---------------------------- INSERT INTO `app01_book` VALUES ('1', '跟金老板學開車', '2018-08-03', '12.90', null, '1'); INSERT INTO `app01_book` VALUES ('2', '跟金老板學開潛艇', '2017-08-10', '9.99', null, '1'); INSERT INTO `app01_book` VALUES ('3', '跟老男孩學思想', '2018-09-03', '39.99', null, '2'); INSERT INTO `app01_book` VALUES ('4', '跟egon學喊麥', '2018-06-12', '0.99', null, '4'); -- ---------------------------- -- Records of app01_book_author -- ---------------------------- INSERT INTO `app01_book_author` VALUES ('3', '1', '1'); INSERT INTO `app01_book_author` VALUES ('4', '2', '1'); INSERT INTO `app01_book_author` VALUES ('5', '1', '2'); INSERT INTO `app01_book_author` VALUES ('2', '2', '2'); INSERT INTO `app01_book_author` VALUES ('6', '3', '3'); INSERT INTO `app01_book_author` VALUES ('7', '3', '4'); 測試數據
4.答案
import os os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ORMHomework.settings") import django django.setup() from app01 import models from django.db.models import Max, Min, Sum, Avg, Count # 查找所有書名里包含金老板的書 ret1= models.Book.objects.filter(title__contains='金老板') # print (ret1) #查找出版日期是2018年的書 ret2 = models.Book.objects.filter(publish_date__year=2018) # print (ret2) #查找出版日期是2017年的書名 ret3 = models.Book.objects.filter(publish_date__year=2017).values('title') # print (ret3) #查找價格大于10元的書 ret4 =models.Book.objects.filter(price__gt=10) # print(ret4) #查找價格大于10元的書名和價格 ret5 = models.Book.objects.filter(price__gt=10).values('title','price') # print(ret5) # 查找memo字段是空的書 ret6 = models.Book.objects.filter(memo__isnull=True) # print(ret6) #----------------------------------------------------------------------------- # 查找在北京的出版社 ret7 = models.Publisher.objects.filter(city='北京') # print(ret7) # 查找名字以沙河開頭的出版社 ret8 = models.Publisher.objects.filter(name__startswith='沙河') # print(ret8) #查找“沙河出版社”出版的所有書籍 ret9 =models.Book.objects.filter(Publisher__name='沙河出版社') # print(ret9) # 查找每個出版社出版價格最高的書籍價格 # ret10 = models.Publisher.objects.all().annotate(max=Max('book__price')).values('name','max') # ret10 = models.Publisher.objects.annotate(max=Max('book_price')).values() # for i in ret10 : # print(i) # 查找每個出版社的名字以及出的書籍數量 ret11 = models.Publisher.objects.annotate(count=Count('book__title')).values('name','count') # for i in ret11: # print(i) #--------------------------------------------------------------------------------------------------------- #查找作者名字里面帶“小”字的作者 ret12 = models.Author.objects.filter(name__contains='小') # print(ret12) #查找年齡大于30歲的作者 ret13 = models.Author.objects.filter(age__gt=30) # print(ret13) #查找手機號是155開頭的作者 ret14 = models.Author.objects.filter(phone__startswith=155) # print(ret14) #查找手機號是155開頭的作者的姓名和年齡 ret15 = models.Author.objects.filter(phone__startswith=155).values('name','age') # print(ret15) #查找每個作者寫的價格最高的書籍價格 # ret16 = models.Author.objects.annotate(max=Max('books__price')).values('name','max') ret16= models.Book.objects.values('author').annotate(max=Max('price')).values('author','max') # for i in ret16: # print(i) #查找每個作者的姓名以及出的書籍數量 # ret17 = models.Author.objects.all().annotate(count=Count('books__title')).values('name','count') # for i in ret17 : # print(i) #------------------------------------------------------------------------------------------------------- #查找書名是“跟金老板學開車”的書的出版社 ret18 = models.Publisher.objects.filter(book__title='跟金老板學開車') # print (ret18) #查找書名是“跟金老板學開車”的書的出版社所在的城市 ret19 = models.Publisher.objects.filter(book__title='跟金老板學開車').values('city') # print(ret19) #查找書名是“跟金老板學開車”的書的出版社的名稱 ret20 = models.Publisher.objects.filter(book__title='跟金老板學開車').values('name') # print(ret20) #查找書名是“跟金老板學開車”的書的出版社出版的其他書籍的名字和價格 pub_obj = models.Publisher.objects.get(book__title='跟金老板學開車') ret21= pub_obj.book_set.all().exclude(title='跟金老板學開車').values('title','price') print(ret21) #查找書名是“跟金老板學開車”的書的所有作者 # ret22 = models.Author.objects.filter(books__title='跟金老板學開車') # print(ret22) #查找書名是“跟金老板學開車”的書的作者的年齡 # ret23 = models.Author.objects.filter(books__title='跟金老板學開車').values('name','age') # print(ret23) #查找書名是“跟金老板學開車”的書的作者的手機號碼 # ret24 = models.Author.objects.filter(books__title='跟金老板學開車').values('name','phone') # print(ret24) #查找書名是“跟金老板學開車”的書的作者們的姓名以及出版的所有書籍名稱和價錢 # ret25= models.Author.objects.filter(books__title='跟金老板學開車') # print(ret25) # for i in ret25: # print(i.books.all().values('title','price')) # # ret = models.Book.objects.aggregate(Max('price')) # print(ret) ret25 = models.Author.objects.values('name','books__title','books__price').filter(books__title='跟金老板學開車') print(ret25)
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Django中ORM練習題的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。