I want to sort a table by 2 fields:
Producto-Precio
1-100
2-25
2-27
1-23
3-45
I make a select order by by Product and price but now what I want is to add a field to larger ones and let the table look like this: Product-Price-Result
1-23-TRUE
1-100-FALSE
2-25-TRUE
2-27-FALSE
3-45-TRUE
Can you help me define what the process would be like? Thanks!