Fungsi pengumpulan khusus PostgreSQLLink to this heading

Fungsi-fungsi ini digambarkan lebih rinci di PostgreSQL docs.

Fungsi pengumpulan tujuan-umumLink to this heading

ArrayAggLink to this heading

class ArrayAgg(expression, distinct=False, filter=None, **extra)Link to this definition

Mengembalikan daftar nilai, termasuk null, disambungkan kedalam larik.

distinctLink to this definition

An optional boolean argument that determines if array values will be distinct. Defaults to False.

BitAndLink to this heading

class BitAnd(expression, filter=None, **extra)Link to this definition

Mengembalikan sebuah int dari bitwise AND dari semua nilai-nilai masukan bukan-null, atau None jika semua nilai-nilai adalah null.

BitOrLink to this heading

class BitOr(expression, filter=None, **extra)Link to this definition

Mengembalikan sebuah int dari bitwise OR dari semua nilai-nilai masukan bukan-null, atau None jika semua nilai-nilai adalah null.

BoolAndLink to this heading

class BoolAnd(expression, filter=None, **extra)Link to this definition

Mengembalikan True, jika semua nilai-nilai masukan adalah true, None jika semua nilai-nilai adalah null jika tidak ada nilai, jika tidak False.

BoolOrLink to this heading

class BoolOr(expression, filter=None, **extra)Link to this definition

Mengembalikan True, jika setidaknya satu nilai masukan adalah true, None jika semua nilai-nilai adalah null atau, j jika tidak ada nilai, jika tidak False.

JSONBAggLink to this heading

class JSONBAgg(expressions, filter=None, **extra)Link to this definition

Returns the input values as a JSON array. Requires PostgreSQL ≥ 9.5.

StringAggLink to this heading

class StringAgg(expression, delimiter, distinct=False, filter=None)Link to this definition

Mengembalikan nilai-nilai masukan digabungkan kedalam string, dipisah berdasarkan string delimiter

delimiterLink to this definition

Diwajibkan argumen. Butuh berupa sebuah string.

distinctLink to this definition

An optional boolean argument that determines if concatenated values will be distinct. Defaults to False.

Fungsi-fungsi pengumpulan untuk statistikLink to this heading

y dan xLink to this heading

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.

CorrLink to this heading

class Corr(y, x, filter=None)Link to this definition

Returns the correlation coefficient as a float, or None if there aren't any matching rows.

CovarPopLink to this heading

class CovarPop(y, x, sample=False, filter=None)Link to this definition

Returns the population covariance as a float, or None if there aren't any matching rows.

Mempunyai satu argumen pilihan:

sampleLink to this definition

By default CovarPop returns the general population covariance. However, if sample=True, the return value will be the sample population covariance.

RegrAvgXLink to this heading

class RegrAvgX(y, x, filter=None)Link to this definition

Returns the average of the independent variable (sum(x)/N) as a float, or None if there aren't any matching rows.

RegrAvgYLink to this heading

class RegrAvgY(y, x, filter=None)Link to this definition

Returns the average of the dependent variable (sum(y)/N) as a float, or None if there aren't any matching rows.

RegrCountLink to this heading

class RegrCount(y, x, filter=None)Link to this definition

Returns an int of the number of input rows in which both expressions are not null.

RegrInterceptLink to this heading

class RegrIntercept(y, x, filter=None)Link to this definition

Returns the y-intercept of the least-squares-fit linear equation determined by the (x, y) pairs as a float, or None if there aren't any matching rows.

RegrR2Link to this heading

class RegrR2(y, x, filter=None)Link to this definition

Returns the square of the correlation coefficient as a float, or None if there aren't any matching rows.

RegrSlopeLink to this heading

class RegrSlope(y, x, filter=None)Link to this definition

Returns the slope of the least-squares-fit linear equation determined by the (x, y) pairs as a float, or None if there aren't any matching rows.

RegrSXXLink to this heading

class RegrSXX(y, x, filter=None)Link to this definition

Returns sum(x^2) - sum(x)^2/N ("sum of squares" of the independent variable) as a float, or None if there aren't any matching rows.

RegrSXYLink to this heading

class RegrSXY(y, x, filter=None)Link to this definition

Returns sum(x*y) - sum(x) * sum(y)/N ("sum of products" of independent times dependent variable) as a float, or None if there aren't any matching rows.

RegrSYYLink to this heading

class RegrSYY(y, x, filter=None)Link to this definition

Returns sum(y^2) - sum(y)^2/N ("sum of squares" of the dependent variable) as a float, or None if there aren't any matching rows.

Contoh penggunaanLink to this heading

Kami akan gunakan tabel contoh ini

Code
| FIELD1 | FIELD2 | FIELD3 |
|--------|--------|--------|
|    foo |      1 |     13 |
|    bar |      2 | (null) |
|   test |      3 |     13 |

Ini adalah beberapa contoh dari beberapa fungsi-fungsi pengumpulan tujuan-umum:

Code
>>> 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):

Code
>>> 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}