create or replace PROCEDURE update_con
(
c_id in lds_consultant.consultant_id%type,
cation in lds_consultant.location%type,
s_area in lds_consultant.specialist_area%type
)
IS
BEGIN
UPDATE lds_consultant
SET
location = cation
specialist_area = s_area
WHERE consultant_id = c_id;
END;
Hello, I'm new to SQL and trying to create a procedure to update the specified table but for some reason it doesn't seem to work. If anyone could help it would be appreciated.