Skip to content

Commit

Permalink
First scripts for PLSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Brumm committed Jun 25, 2024
1 parent e290e64 commit 337f569
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions courses/course_effective_plsql/03_helloworld.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello world');
END;
5 changes: 5 additions & 0 deletions courses/course_effective_plsql/06_create_sp.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CREATE PROCEDURE HelloWorld
AS
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello world');
END;
3 changes: 3 additions & 0 deletions courses/course_effective_plsql/07_call.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
CALL HelloWorld();
EXEC HelloWorld();
EXEC HelloWorld;
5 changes: 5 additions & 0 deletions courses/course_effective_plsql/08_alter.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CREATE PROCEDURE HelloWorld
AS
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello world');
END;

0 comments on commit 337f569

Please sign in to comment.