Posts by Rafael • 36 points
2 posts
-
0
votes1
answer31
viewsA: Variable Sharing between Angular Components
In this case you can use the parent component to share the data between siblings. The component where you manipulate the list would be as follows: @Output() testChanged = new…
-
2
votes4
answers134
viewsA: Mysql query involving Profession and Note information registered in the same column
Can try this solution, I believe you need two selects to do this, one for each condition. SELECT count(t.inf_codigo_contrato) FROM tabela AS t WHERE t.inf_codigo_variavel=117 AND…