How to use group_by in Django

Source: Internet
Author: User
This article describes how to use group_by in Django. The example analyzes the skills related to using group_by statements in Django, for more information about how to use group_by in Django, see the following example. Share it with you for your reference. The specific analysis is as follows:

How to use the group_by statement in Django? I have found a lot of information and have not seen it. here are two ways to share with you:

First, create a simple model.

Class Book (models. model): name = models. charField (u 'Title ', max_length = 255, db_index = True) author = models. charField (u'author ', max_length = 255) remark = models. charField (u'note', max_length = 255) pub_date = models. dateTimeField (u'posting time', auto_now_add = True)

Method 1:

Book_list = Book. objects. all () book_list.query.group_by = ['author']

Method 2:

Query = Book. objects. all (). query. group_by = ['autor'] book_list = QuerySet (query = query, model = Book)

However, I found a small problem in practical application:

If the author field has a null value, an error will be reported in the following way. if the author field has a null value, an error will be reported in the second way.

I hope this article will help you with Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.