Skip to content

Instantly share code, notes, and snippets.

@yooouuri
Created January 11, 2016 01:49
Show Gist options
  • Save yooouuri/94667348089a1ba1d1d8 to your computer and use it in GitHub Desktop.
Save yooouuri/94667348089a1ba1d1d8 to your computer and use it in GitHub Desktop.
create or replace
PROCEDURE zoekWinkelsInProvincie (
provincie IN VARCHAR,
stores OUT SYS_REFCURSOR
)
IS
BEGIN
OPEN stores FOR
SELECT *
FROM winkel w
JOIN postcode p ON p.postcode = w.postcode
WHERE p.province = provincie;
END;
/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment