Skip to content

Instantly share code, notes, and snippets.

@velll
Created April 17, 2017 11:24
Show Gist options
  • Save velll/85990d4b3952edfa4c7e4c5bb143f644 to your computer and use it in GitHub Desktop.
Save velll/85990d4b3952edfa4c7e4c5bb143f644 to your computer and use it in GitHub Desktop.
IF NOT AND NULL
DECLARE
BEGIN
IF NOT (1 = NULL) THEN
RAISE_APPLICATION_ERROR(-20100, 'Not works!');
END IF;
-- it's not working obviously
END;
/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment