Guest_imported
New member
- Jan 1, 1970
- 0
Hi
I have data in a table in the following format :
Time | ID | Value
10:51 1 1
10:51 2 5
10:51 3 2
10:52 1 7
10:52 2 1
10:52 3 3
10:53 1 2
10:53 2 7
10:53 3 3
What I would like to achieve is to apply a query to the above table that would produce a result dataset that puts each unique ID into it's own field with the corresponding Value in the rows below, based on time, eg :
Time | 1 | 2 | 3
10:51 1 5 7
10:52 7 1 3
10:53 2 7 3
Thank You
I have data in a table in the following format :
Time | ID | Value
10:51 1 1
10:51 2 5
10:51 3 2
10:52 1 7
10:52 2 1
10:52 3 3
10:53 1 2
10:53 2 7
10:53 3 3
What I would like to achieve is to apply a query to the above table that would produce a result dataset that puts each unique ID into it's own field with the corresponding Value in the rows below, based on time, eg :
Time | 1 | 2 | 3
10:51 1 5 7
10:52 7 1 3
10:53 2 7 3
Thank You