I have a table with two fields. The first field is a "record number" and the second field is a separate "catalog number".
I want to be able to view the items from the second field across so that they are in a separate field, so that there is a unique "record number" in each record with the "catalog numbers" read from left to right.
If you don't understand what I'm asking about, look below:
My records currently look like this:
REC_NUM CAT_NUM
----------- -----------
1 1
1 2
1 3
2 4
2 5
2 6
I want to be able to read my table like this:
REC_NUM CAT_NUM1 CAT_NUM2 CAT_NUM3
----------- ------------- ------------- -------------
1 1 2 3
2 4 5 6
Any help would be greatly appreciated.
Thanks.
I want to be able to view the items from the second field across so that they are in a separate field, so that there is a unique "record number" in each record with the "catalog numbers" read from left to right.
If you don't understand what I'm asking about, look below:
My records currently look like this:
REC_NUM CAT_NUM
----------- -----------
1 1
1 2
1 3
2 4
2 5
2 6
I want to be able to read my table like this:
REC_NUM CAT_NUM1 CAT_NUM2 CAT_NUM3
----------- ------------- ------------- -------------
1 1 2 3
2 4 5 6
Any help would be greatly appreciated.
Thanks.