Posts by Johnatha Relvas • 101 points
1 post
-
0
votes1
answer28
viewsA: I need to condition to bring in group by only the data that do not have a condition
When you use the command SELECT, can use the condition WHERE to condition what you want to bring. Try so: select id_grupo,id_analista from tb_grupo_analista where tp_controle != 2 group by…