Fungsi pengumpulan khusus PostgreSQL¶
Fungsi-fungsi ini digambarkan lebih rinci di 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]}
Fungsi pengumpulan tujuan-umum¶
ArrayAgg
¶
BitAnd
¶
BitOr
¶
BoolAnd
¶
BoolOr
¶
JSONBAgg
¶
StringAgg
¶
-
class
StringAgg
(expression, delimiter, distinct=False, filter=None)[sumber]¶ Mengembalikan nilai-nilai masukan digabungkan kedalam string, dipisah berdasarkan string
delimiter
-
delimiter
¶ Diwajibkan argumen. Butuh berupa sebuah string.
-
distinct
¶ - New in Django 1.11.
An optional boolean argument that determines if concatenated values will be distinct. Defaults to
False
.
-
Fungsi-fungsi pengumpulan untuk statistik¶
y
dan x
¶
The arguments y
and x
for all these functions can be the name of a
field or an expression returning a numeric data. Both are required.
Corr
¶
CovarPop
¶
-
class
CovarPop
(y, x, sample=False, filter=None)[sumber]¶ Returns the population covariance as a
float
, orNone
if there aren't any matching rows.Mempunyai satu argumen pilihan:
-
sample
¶ By default
CovarPop
returns the general population covariance. However, ifsample=True
, the return value will be the sample population covariance.
-
RegrAvgX
¶
RegrAvgY
¶
RegrCount
¶
RegrIntercept
¶
RegrR2
¶
RegrSlope
¶
RegrSXX
¶
RegrSXY
¶
Contoh penggunaan¶
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}