I'm trying to combine two rows under one column.
using: oracle 10g
Here is my code
current output
what i want the output to be
Thanks
using: oracle 10g
Here is my code
Code:
select
cr.report_id as report_id,
cr.report_name as report_name,
ei.info as info
from SPSS.WEB_CLIENT_REPORTS_NFL CR, spss.web_report_extra_info_nfl EI
where cr.report_id = ei.report_id
current output
Code:
report_id / report_name / info
11111 player scored When a individual croses
11111 player scored the opponents end zone
what i want the output to be
Code:
report_id / report_name / info
11111 player scored When a individual croses the opponents end zone
Thanks