It's not a good Monday morning here, folks.
I have a table that contains the following:
TEXT_ID ROW_ADDED_TS SEQ_NBR C_1 C_2
90904 1 1000 ABC DEF
90904 2 2000 GHI JKL
90904 3 3000 MNO PQ
I'm trying to create a view that shows the TEXT_ID,
and then all of C_1 and C_2 nicely together like this:
90904 ABCDEFGHIJKLMNOPQ
I need to know the syntax for telling this to give me C_1, and then C-@ for all of the rows that have the same TEXT_ID number, and give them to me in the order of SEQ_NBR (in one field)....
I know how to do the select, but not how to get them all
into one field? Concatenate it? How?
Please take pity on a Crystal developer trying to learn Oracle =)
LMC
LMC cryerlisa@hotmail.com
select * from Management where proj_mgmt_skills <> NULL
0 records returned
I have a table that contains the following:
TEXT_ID ROW_ADDED_TS SEQ_NBR C_1 C_2
90904 1 1000 ABC DEF
90904 2 2000 GHI JKL
90904 3 3000 MNO PQ
I'm trying to create a view that shows the TEXT_ID,
and then all of C_1 and C_2 nicely together like this:
90904 ABCDEFGHIJKLMNOPQ
I need to know the syntax for telling this to give me C_1, and then C-@ for all of the rows that have the same TEXT_ID number, and give them to me in the order of SEQ_NBR (in one field)....
I know how to do the select, but not how to get them all
into one field? Concatenate it? How?
Please take pity on a Crystal developer trying to learn Oracle =)
LMC
LMC cryerlisa@hotmail.com
select * from Management where proj_mgmt_skills <> NULL
0 records returned