Django ORM запросы

from django.contrib.auth.models import User из django.db import models

class CUser(User): score = models.IntegerField()

У пользовательского пользователя есть дополнительное поле ("score"), мы хотим выполнять следующие операции, используя только ORM-запросы. Каждый ответ должен содержать один запрос:

  1. Calculate the mean score of all users.

  2. Find the user with the highest score.

  3. Find if there is any user with score less than 2 (return True/False)

  4. Find all the users which have score exactly equal to the mean score (need to calculate mean score again in the same query).

  5. Change the score value of all users in a single query to 100 (one hundred)

  6. Find all the users which don't have score 10 or 20

  7. Print a list of all the score values from all users excluding the first 10 users.

Вернуться на верх