Do

spool out.csv
select empno||','|| ename||','|| job||','|| deptno||','|| mgr from emp;
spool off

This will create a comma seperated output and spool it in a .csv file which you can directly open in an excel sheet.