select * from (
select 'user_id', 'user_name', 0 rn
from dual
union
select t.channel_id, t.module_name, rownum rn
from t_user t)
order by rn