Last active
June 12, 2019 07:12
-
-
Save RashidJorvee/778f92d4d1b0dc4606bf30a2761837d5 to your computer and use it in GitHub Desktop.
Create a simple procedure in Oracle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BEGIN | |
| procedureName; | |
| END; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE OR REPLACE PROCEDURE procedureName | |
| IS | |
| BEGIN | |
| DBMS_OUTPUT.PUT_LINE('You have successfully executed the procedure!'); | |
| END; |
RashidJorvee
commented
Jun 12, 2019
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment