MilanInside
ISP
Hello,
I have an query that selects some records from a database what need to be grouped by an ID value.
I can have multiple records with the same ID and they need to be grouped by it, an example:
an array from query would be:
1. 1 record one
2. 1 record two
3. 8 record one
4. 8 record two
5. 8 record three
and the final output that I need is
1
-------
record one
record two
8
--------
record one
record two
record three
I would appriciate if anyone would help me to pull this off.
I have an query that selects some records from a database what need to be grouped by an ID value.
I can have multiple records with the same ID and they need to be grouped by it, an example:
an array from query would be:
1. 1 record one
2. 1 record two
3. 8 record one
4. 8 record two
5. 8 record three
and the final output that I need is
1
-------
record one
record two
8
--------
record one
record two
record three
I would appriciate if anyone would help me to pull this off.