Fungsi-fungsi ini tersedia dari modul``django.contrib.postgres.aggregates``. Mereka digambarkan dalam lebih rinci dalam PostgreSQL docs.
Catatan
Semua fungsi-fungsi tanpa nama lain awalan, jadi anda harus jelas menyediakan satu. Sebagai contoh:
>>> SomeModel.objects.aggregate(arr=ArrayAgg('somefield'))
{'arr': [0, 1, 2]}
ArrayAgg
¶ArrayAgg
(expression, distinct=False, filter=None, default=None, ordering=(), **extra)¶Returns a list of values, including nulls, concatenated into an array, or
default
if there are no values.
distinct
¶Sebuah argumen boolean pilihan yang menentukan jika nilai senarai akan berbeda. Awalan pada False
.
ordering
¶Sebuah string pilihan dari sebuah nama bidang (dengan sebuah awalan "-"
pilihan yang menunjukkan urutan menurun) atau sebuah pernyataan (atau sebuah tuple atau list dari string dan/atau pernyataan) yang menentukan urutan dari unsur dalam daftar hasil.
Contoh:
'some_field'
'-some_field'
from django.db.models import F
F('some_field').desc()
Ditinggalkan sejak versi 4.0: If there are no rows and default
is not provided, ArrayAgg
returns an empty list instead of None
. This behavior is deprecated
and will be removed in Django 5.0. If you need it, explicitly set
default
to Value([])
.
BitAnd
¶BitAnd
(expression, filter=None, default=None, **extra)¶Returns an int
of the bitwise AND
of all non-null input values, or
default
if all values are null.
BitOr
¶BitOr
(expression, filter=None, default=None, **extra)¶Returns an int
of the bitwise OR
of all non-null input values, or
default
if all values are null.
BoolAnd
¶BoolAnd
(expression, filter=None, default=None, **extra)¶Returns True
, if all input values are true, default
if all values
are null or if there are no values, otherwise False
.
Contoh penggunaan:
class Comment(models.Model):
body = models.TextField()
published = models.BooleanField()
rank = models.IntegerField()
>>> from django.db.models import Q
>>> from django.contrib.postgres.aggregates import BoolAnd
>>> Comment.objects.aggregate(booland=BoolAnd('published'))
{'booland': False}
>>> Comment.objects.aggregate(booland=BoolAnd(Q(rank__lt=100)))
{'booland': True}
BoolOr
¶BoolOr
(expression, filter=None, default=None, **extra)¶Returns True
if at least one input value is true, default
if all
values are null or if there are no values, otherwise False
.
Contoh penggunaan:
class Comment(models.Model):
body = models.TextField()
published = models.BooleanField()
rank = models.IntegerField()
>>> from django.db.models import Q
>>> from django.contrib.postgres.aggregates import BoolOr
>>> Comment.objects.aggregate(boolor=BoolOr('published'))
{'boolor': True}
>>> Comment.objects.aggregate(boolor=BoolOr(Q(rank__gt=2)))
{'boolor': False}
JSONBAgg
¶JSONBAgg
(expressions, distinct=False, filter=None, default=None, ordering=(), **extra)¶Returns the input values as a JSON
array, or default
if there are
no values. You can query the result using key and index lookups
.
distinct
¶Sebuah argumen boolean pilihan yang menentukan jika nilai senarai akan berbeda. Awalan pada False
.
ordering
¶Sebuah string pilihan dari sebuah nama bidang (dengan sebuah awalan "-"
pilihan yang menunjukkan urutan menurun) atau sebuah pernyataan (atau sebuah tuple atau list dari string dan/atau pernyataan) yang menentukan urutan dari unsur dalam daftar hasil.
Contoh-contoh adalah sama seperti untuk ArrayAgg.ordering
.
Contoh penggunaan:
class Room(models.Model):
number = models.IntegerField(unique=True)
class HotelReservation(model.Model):
room = models.ForeignKey('Room', on_delete=models.CASCADE)
start = models.DateTimeField()
end = models.DateTimeField()
requirements = models.JSONField(blank=True, null=True)
>>> from django.contrib.postgres.aggregates import JSONBAgg
>>> Room.objects.annotate(
... requirements=JSONBAgg(
... 'hotelreservation__requirements',
... ordering='-hotelreservation__start',
... )
... ).filter(requirements__0__sea_view=True).values('number', 'requirements')
<QuerySet [{'number': 102, 'requirements': [
{'parking': False, 'sea_view': True, 'double_bed': False},
{'parking': True, 'double_bed': True}
]}]>
Ditinggalkan sejak versi 4.0: If there are no rows and default
is not provided, JSONBAgg
returns an empty list instead of None
. This behavior is deprecated
and will be removed in Django 5.0. If you need it, explicitly set
default
to Value('[]')
.
StringAgg
¶StringAgg
(expression, delimiter, distinct=False, filter=None, default=None, ordering=())¶Returns the input values concatenated into a string, separated by
the delimiter
string, or default
if there are no values.
delimiter
¶Diwajibkan argumen. Butuh berupa sebuah string.
distinct
¶Sebuah argumen boolean pilihan yang menentukan jika nilai yang digabungkan akan berbeda. Awalan menjadi False
.
ordering
¶Sebuah string pilihan dari sebuah bidang nama (dengan awalan "-"
pilihan yang menunjukkan urutan menurun) atau sebuah pernyataan (atau sebuah tuple atau list dari string dan/atau pernyataan) yang menentukan urutan dari unsur dalam hasil string.
Contoh-contoh adalah sama seperti untuk ArrayAgg.ordering
.
Ditinggalkan sejak versi 4.0: If there are no rows and default
is not provided, StringAgg
returns an empty string instead of None
. This behavior is
deprecated and will be removed in Django 5.0. If you need it,
explicitly set default
to Value('')
.
y
dan x
¶Argumen-argumen y
dan x
untuk semua fungsi-fungsi ini dapat dinamai dari bidang atau sebuah pernyataan mengembalikan data numerik. Kedua diwajibkan.
Corr
¶Corr
(y, x, filter=None, default=None)¶Returns the correlation coefficient as a float
, or default
if there
aren't any matching rows.
CovarPop
¶CovarPop
(y, x, sample=False, filter=None, default=None)¶Returns the population covariance as a float
, or default
if there
aren't any matching rows.
Mempunyai satu argumen pilihan:
sample
¶Secara awalan CovarPop
mengembalikan populasi kovarian umum. Bagaimanapun, jika sample=True
, nilai kembalian akan berupa contoh populasi kovarian.
RegrAvgX
¶RegrAvgX
(y, x, filter=None, default=None)¶Returns the average of the independent variable (sum(x)/N
) as a
float
, or default
if there aren't any matching rows.
RegrAvgY
¶RegrAvgY
(y, x, filter=None, default=None)¶Returns the average of the dependent variable (sum(y)/N
) as a
float
, or default
if there aren't any matching rows.
RegrCount
¶RegrCount
(y, x, filter=None)¶Mengembalikan sebuah int
dari angka dari baris masukan dimana kedua pernyataan tidak null.
Catatan
The default
argument is not supported.
RegrIntercept
¶RegrIntercept
(y, x, filter=None, default=None)¶Returns the y-intercept of the least-squares-fit linear equation determined
by the (x, y)
pairs as a float
, or default
if there aren't any
matching rows.
RegrR2
¶RegrR2
(y, x, filter=None, default=None)¶Returns the square of the correlation coefficient as a float
, or
default
if there aren't any matching rows.
RegrSlope
¶RegrSlope
(y, x, filter=None, default=None)¶Returns the slope of the least-squares-fit linear equation determined
by the (x, y)
pairs as a float
, or default
if there aren't any
matching rows.
RegrSXX
¶RegrSXX
(y, x, filter=None, default=None)¶Returns sum(x^2) - sum(x)^2/N
("sum of squares" of the independent
variable) as a float
, or default
if there aren't any matching rows.
Kami akan gunakan tabel contoh ini
| FIELD1 | FIELD2 | FIELD3 |
|--------|--------|--------|
| foo | 1 | 13 |
| bar | 2 | (null) |
| test | 3 | 13 |
Ini adalah beberapa contoh dari beberapa fungsi-fungsi pengumpulan tujuan-umum:
>>> TestModel.objects.aggregate(result=StringAgg('field1', delimiter=';'))
{'result': 'foo;bar;test'}
>>> TestModel.objects.aggregate(result=ArrayAgg('field2'))
{'result': [1, 2, 3]}
>>> TestModel.objects.aggregate(result=ArrayAgg('field1'))
{'result': ['foo', 'bar', 'test']}
Contoh selanjutnya menunjukkan penggunaan dari fungsi-fungsi pengumpulan statistik. Jalur pokok akan tidak digambarkan (anda dapat membaca tentang ini, sebagai contoh, pada wikipedia):
>>> TestModel.objects.aggregate(count=RegrCount(y='field3', x='field2'))
{'count': 2}
>>> TestModel.objects.aggregate(avgx=RegrAvgX(y='field3', x='field2'),
... avgy=RegrAvgY(y='field3', x='field2'))
{'avgx': 2, 'avgy': 13}
Agu 03, 2022