У меня есть это утверждение, которое объединяет несколько строк в одну, а затем выводит их так, как мне нужны данные:
SELECT COURSES_ID, REQUISITE_TYPE_TITLE
, RTRIM
( xmlagg (xmlelement (c, CONDITION_TITLE || '' || REQ_TEXT || '' ) order by ORDER_NUM).extract ('//text()')
, ',' ) AS REQTexts
FROM COS_REQUISITES
WHERE COURSES_ID = '1175'
AND REQUISITE_TYPE_TITLE != 'Corequisite'
GROUP BY COURSES_ID, REQUISITE_TYPE_TITLE;
Результат:
╔═══════════╦════════════╦═════════════════════════════════════╦═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
║ ORDER_NUM ║ COURSES_ID ║ REQUISITE_TYPE_TITLE ║ REQ_TEXT ║
╠═══════════╬════════════╬═════════════════════════════════════╬═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
║ 1 ║ 1175 ║ Limitation on Enrollment ║ With minimum grade of "C" ║
║ 2 ║ 1175 ║ Advisory on Recommended Preparation ║ MATH 200 or equivalent college course with "C" or better or equivalent college course with "C" or better or MATH 205 or equivalent college course with "C" or better or or equivalent college course with "C" or better or equivalent college course with "C" or better ║
╚═══════════╩════════════╩═════════════════════════════════════╩═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝
Состав:
╔═══════════╦════════════╦═══════════╦═════════════════════════════════════╦══════════════════════════════════════════════════════════╗
║ ORDER_NUM ║ COURSES_ID ║ CONDITION ║ REQUISITE_TYPE_TITLE ║ REQ_TEXT ║
╠═══════════╬════════════╬═══════════╬═════════════════════════════════════╬══════════════════════════════════════════════════════════╣
║ 1164 ║ 1175 ║ ║ Advisory on Recommended Preparation ║ MATH 200 or equivalent college course with "C" or better ║
║ 1165 ║ 1175 ║ ║ Advisory on Recommended Preparation ║ or equivalent college course with "C" or better ║
║ 1166 ║ 1175 ║ or ║ Advisory on Recommended Preparation ║ MATH 205 or equivalent college course with "C" or better ║
║ 1167 ║ 1175 ║ or ║ Advisory on Recommended Preparation ║ or equivalent college course with "C" or better ║
║ 1168 ║ 1175 ║ ║ Advisory on Recommended Preparation ║ or equivalent college course with "C" or better ║
║ 1169 ║ 1175 ║ ║ Limitation on Enrollment ║ With minimum grade of "C" ║
╚═══════════╩════════════╩═══════════╩═════════════════════════════════════╩══════════════════════════════════════════════════════════╝
Требуемый результат:
╔═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
║ Advisory on Recommended Preparation MATH 200 or equivalent college course with "C" or better or equivalent college course with "C" or better or MATH 205 or equivalent college course with "C" or better or equivalent college course with "C" or better or equivalent college course with "C" or better Limitation on Enrollment With minimum grade of "C" ║
╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝
Я стараюсь не помещать это во временную таблицу или несколько представлений, которые выводили бы это в один раздел.
Я знаю, что у него плохие данные, но мне сказали Garbage In, Garbage Out. Любая помощь будет принята с благодарностью.
Даже с LISTAGG, который не позволяет различать, насколько я могу сказать:
SELECT COURSES_ID, LISTAGG (REQUISITE_TYPE_TITLE || '' ||
CONDITION_TITLE || '' || REQ_TEXT, '') WITHIN GROUP (ЗАКАЗАТЬ
ORDER_NUM) AS Заголовок ИЗ COS_REQUISITES WHERE COURSES_ID = '1175'
GROUP BY COURSES_ID;
Результат:
╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
║ TITLE ║
╠════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
║ Advisory on Recommended Preparation MATH 200 or equivalent college course with "C" or better Advisory on Recommended Preparation or equivalent college course with "C" or better Advisory on Recommended Preparation or MATH 205 or equivalent college course with "C" or better Advisory on Recommended Preparation or or equivalent college course with "C" or better Advisory on Recommended Preparation or equivalent college course with "C" or better Limitation on Enrollment With minimum grade of "C" ║
╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝
Обратите внимание, что повторяется REQUISITE_TYPE_TITLE, я хочу, чтобы он появлялся только один раз, как и желаемый результат. Я не могу изменить таблицу так, чтобы она была нулевой, потому что это таблица, которая загружается динамически и ежедневно обновляется кем-то другим.