Eu não sou tão bom com SQL (PostgreSQL). Aqui está o que eu quero fazer:
Eu tenho uma tabela, campos:
id SERIAL
inet INET
ports integer[]
id | inet | ports
----+------------+------------
2 | 1.2.2.1 | {80}
1 | 1.2.3.4 | {80,12}
...
Como posso
- obtenha todos os valores de "portas" usados nesta tabela: 80, 12
- conte quantos endereços inet estão em uma porta específica:
Como isso:
port | count
--------+------------
12 | 1
80 | 2
...
Se alguém estiver procurando por uma versão do Django:
class Unnest(Func):
function = 'UNNEST'
Model.objects \
.annotate(port=Unnest('ports', distinct=True)) \
.values('port') \
.annotate(count=Count('port')) \
.order_by('-count', '-port')