Most voted "pgadmin3" questions
3 questions
Sort by count of
-
2
votes2
answers190
viewsPostgresql COUNT function does not work
The problem is simple but I can not understand where I am missing, I need to check the amount of results of the following sql: SELECT f.id,sum(p.valor) as valor_fatura, f.valor_desconto as desconto,…
-
0
votes0
answers41
viewsCreate database
I’m trying to create a database on postgres but am getting the following message: ERROR: cannot set transaction read-write mode During Recovery I have uninstalled, cleaned the registry, installed…
-
0
votes1
answer29
viewsCounting supervisors in pgAdmin
How can I list the name of each supervisor with the amount of supervised. select f.NomeFunc, s.ID_Superv from Funcionario f inner join Funcionario s on s.ID_Superv = f.ID_Func having…