Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Suppressing a column
>Is there a way of suppress a table column ?
In a select in SQL*Plus?
column name noprint
select *
from employee;
If you want to hide a column from the users (for example when using DESC in SQL*Plus), make a view.
Arjan. Received on Fri Aug 14 1998 - 09:59:38 CDT
![]() |
![]() |