In my database I have a table called loans, within that I have the following attributes;
create table loan
(LoanID varchar2(6) PRIMARY KEY,
Issue_Date date not null,
Due_Date date not null,
Return_Date date not null,
Fine_Total number(3,2
.....));
I want the ability to run a view (called...