Мне нужен определенный заказ для столбца Completion_Status, как в:
Завершено, прошло, не завершено и не выполнено
Как мне это заказать? Я хочу определить порядок выше.
Я пробовал CASE, но выдает ошибку, так как в Ожидается, что NUM не CHAR.
select DISTINCT
u.first_name || ' ' || u.last_name "Employee_Name",
rco.title "Course_Name",
decode(p.status,'P','Passed', 'F','Failed', 'C','Completed', 'I','Incomplete', 'Not Attempted') "Completion_Status",
to_char(p.completed_date,'YYYY-MM-DD') "Date_Completed"
from
offering o, offering_enrollment oe, users u , performance p, offering_content_object c, content_object rco
where
o.id = oe.offering_id and
u.id = oe.user_id and
o.content_object_id = c.id AND
p.content_object_id = c.source_id and
p.content_object_id = rco.id AND
p.user_id(+) = u.id and
u.id in ( select id
from users
where manager_id = $user.id$)
AND
p.content_object_id NOT IN (41453457, 130020319, 43363877)
order by
"Employee_Name", "Completion_Status"