2
Well, I am in a incognita that I would like to solve directly in the SQL query, see this supposed example:
TIPO | DE | IDENTIFICADOR
-------------------------
001 | 23 | 9
001 | 44 | 9
001 | 23 | 8
002 | 11 | 11
My wish is group the data in order to facilitate interpretation, in which case it should group together data from TYPE and IDENTIFIER, so that I know the OF to display to the user.
The return would be something like:
2 dados de 23, 24 sobre o identificador 9
1 dado de 23 sobre o identificador 8
1 dado de 11 sobre o identificador 11
what would be the means to accomplish this directly in the query, enabling a return similar to the example?
Was any of the answer helpful? Don’t forget to choose one and mark it so it can be used if someone has a similar question!
– Sorack