A) The number of meters read in the current month by each of the meter readers (this view should be able to be used at any time without having to be changed to accommodate the date).
Readings Table
Name Null Type
--------------- -------- ------------
READINGID NOT NULL VARCHAR2(4)
READINGDATA NUMBER(10)
READINGDATE DATE
METERSERIALNO VARCHAR2(10)
EMPLOYEEID VARCHAR2(10)
LASTREADINGDATA NUMBER(10)
Employee Table
Name Null Type
-------------------- -------- ------------
EMPLOYEEID NOT NULL VARCHAR2(10)
FIRSTNAME VARCHAR2(20)
LASTNAME VARCHAR2(20)
NUMBEROF_METERS_READ NUMBER(10)
My Answer
create or replace view ViewA as
select E.EmployeeID as Employee, E.FirstName, E.Numberof_Meters_Read, R.ReadingDate
from Employee E
join
Readings R
on (R.EmployeeID = E.EmlpoyeeID);
The Oracle is showing, 'Invalid Identifier'. Need help!!