I have a table \"Patient\" which has 5 fields.
CREATE TABLE PATIENT
(PAT_ID CHAR (4) PRIMARY KEY,
PAT_NAME VARCHAR (7),
ADMITTED DATE,
ROO
here is the query that creates view by name "view_name":
create or replace view view_name as
select t.Pat_Id || ' ' || t.Pat_Name Patient,
t.Doctor,
t.Room,
to_char(t.Admitted, 'Month dd, yyyy') Admitted
from Patient t
with read only;
you can select as
SELECT * FROM VIEW_NAME
I think that here provided enough information, that you can add or manipulate (other) columns wether to show.