Non sono così bravo con SQL (PostgreSQL). Ecco cosa voglio fare:
Ho una tabella, campi:
id SERIAL
inet INET
ports integer[]
id | inet | ports
----+------------+------------
2 | 1.2.2.1 | {80}
1 | 1.2.3.4 | {80,12}
...
Come posso
- ottenere tutti i valori "port" usati in questa tabella: 80, 12
- conta quanti indirizzi inet si trovano su una porta specifica:
Come questo:
port | count
--------+------------
12 | 1
80 | 2
...
Se qualcuno è alla ricerca di una versione di Django:
class Unnest(Func):
function = 'UNNEST'
Model.objects \
.annotate(port=Unnest('ports', distinct=True)) \
.values('port') \
.annotate(count=Count('port')) \
.order_by('-count', '-port')