I suspect this has a simple solution. Please help this SQL code newbie.
This select statement :
Select g.NOTIF_NAME, h.AW_NOTIF_EMAIL, g.NOTIF_ACTIVITY_DATE
from NOTIF g, NOTIF_DETAIL h
where g.aw_notif_seq = h.aw_notif_seq
and h.AW_NOTIF_EMAIL like '&email'
order by 1,2
gives me error:
ORA-01008: not all variables bound
How do I BIND this runtime parameter?
This select statement :
Select g.NOTIF_NAME, h.AW_NOTIF_EMAIL, g.NOTIF_ACTIVITY_DATE
from NOTIF g, NOTIF_DETAIL h
where g.aw_notif_seq = h.aw_notif_seq
and h.AW_NOTIF_EMAIL like '&email'
order by 1,2
gives me error:
ORA-01008: not all variables bound
How do I BIND this runtime parameter?