I have created the following view in MySQL:
CREATE VIEW MYVIEW AS (
SELECT A.FNAME
, A.LNAME
, B.EMAIL
FROM EMPLOYEE A, EMPEMAIL B
WHERE A.EID = :empId
AND A.EID = B.EID
AND B.EMAILTYP = :emailType)
I have to make empId
and emailType
dynamic i.e. get the result for the desired values of empId
and emailType
at runtime.
What changes should be made in the code?
Thanks in advance.