diff --git a/LANGUAGES.md b/LANGUAGES.md index 83ae019..23d100f 100644 --- a/LANGUAGES.md +++ b/LANGUAGES.md @@ -97,3 +97,6 @@ install-rust: install-scala: sudo apt-get install scala -y + +install-sql + sqlplus -S / as sysdba @hello_world.sql \ No newline at end of file diff --git a/README.md b/README.md index 2a9c261..41f28c1 100644 --- a/README.md +++ b/README.md @@ -44,3 +44,4 @@ 36. [Kotlin](https://github.com/srbcheema1/Hello_world/blob/master/Hello_world.kt) 37. [CDuce](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.xsd) 38. [ARDUINO](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.ino) +39. [Oracle](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.sql) diff --git a/hello_world.sql b/hello_world.sql new file mode 100644 index 0000000..5ded760 --- /dev/null +++ b/hello_world.sql @@ -0,0 +1,3 @@ +set head off +select 'Hello World' from dual; +exit \ No newline at end of file