Developing a database to store test results from different models of a simulation i got this:image
See the "test" column refers to a specific scenario that was tested with one or more "modelo",or model, and "resultado" is the result from that test.
The thing is: i need a single query that for each "test" return the results from each "modelo", that catch is, there is a undefined number of "modelo". The result from such query would be something like:
How can i do this? I've tried with group by without success. Also, if possible, please list the operations used in the query for further learning.