4dinterface,
SQL> select *,dname dn from dept
2 /
select *,dname dn from dept
*
ERROR at line 1:
ORA-00923: FROM keyword not found where expected
SQL> ed
Wrote file afiedt.buf
1* select dept.*,dname dn from dept
SQL> /
DEPTNO DNAME LOC DN
---------- -------------- ------------- --------------
10 ACCOUNTING NEW YORK ACCOUNTING
20 RESEARCH DALLAS RESEARCH
30 SALES CHICAGO SALES
40 OPERATIONS BOSTON OPERATIONS
......
stax