Relative Content

Tag Archive for plsqloracle-sqldeveloper

“SQL Statement ignored” and “ORA-00936: missing expression” Errors

create or replace procedure list_job_applications(v_job_id NUMBER) IS cursor c1 is select IS v_job_id from accounts a, job_app ja, job_seekser js, skill s, job_seeker_skills jss where a.accid = js.accid and a.accid = ja.accid and ja.accid = jss.accid and jss.sid = s.sid; v_count int; begin select count(*) into v_count from job_posts where job_id =v_job_id; if v_count = […]