Posts by AlvaroMendes • 44 points
2 posts
- 
		1 votes1 answer108 viewsA: Refer to employees with equal names and different CpfsIn your case, you would have to make a Join with the same table linking the name and using having Count: SELECT #TMP.NOME ,#TMP2.CPF FROM #TMP JOIN #TMP AS #TMP2 ON #TMP2.NOME = #TMP.nome GROUP BY… sql-serveranswered AlvaroMendes 44
- 
		0 votes1 answer35 viewsQ: Change column height while maintaining CSS baseI am having problems gradually increasing the columns. I want the result to be the same as the image below: I tried to change the height of each one, only the base is increasing the width (which…