Hello,
I have a table with two columns: Code and Collection.
The table looks like:
Code Collection
------ ----------
10A-35 ABIGAJL
10B-28 AVALON
15K-35 ANJALI
10A-35 WISTERIA
10A-35 CELESTE
How to create a cursor which also have two columns, for code and collection, so that data are grouped by code, and second column have all collections where given code is belongin to.
For example, my cursor should looks like:
Code Collection
------ --------------------------
10A-35 ABIGAJL, WISTERIA, CELESTE
10B-28 AVALON
15K-35 ANJALI
Thanks
Mensud
I have a table with two columns: Code and Collection.
The table looks like:
Code Collection
------ ----------
10A-35 ABIGAJL
10B-28 AVALON
15K-35 ANJALI
10A-35 WISTERIA
10A-35 CELESTE
How to create a cursor which also have two columns, for code and collection, so that data are grouped by code, and second column have all collections where given code is belongin to.
For example, my cursor should looks like:
Code Collection
------ --------------------------
10A-35 ABIGAJL, WISTERIA, CELESTE
10B-28 AVALON
15K-35 ANJALI
Thanks
Mensud