Skip to content

Instantly share code, notes, and snippets.

@544
Created April 27, 2011 09:29
Show Gist options
  • Select an option

  • Save 544/943978 to your computer and use it in GitHub Desktop.

Select an option

Save 544/943978 to your computer and use it in GitHub Desktop.
plsqlの雛形
DECLARE
VAR VARCHAR(1);
BEGIN
SELECT 'X' INTO VAR FROM DUAL;
DBMS_OUTPUT.PUT_LINE(VAR);
END;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment