From f082468a28ae3665509e6157a5fc80076b83cc82 Mon Sep 17 00:00:00 2001 From: ccdlus Date: Wed, 18 Apr 2018 02:22:05 +0700 Subject: [PATCH] add sql oracle (#88) --- LANGUAGES.md | 3 +++ README.md | 1 + hello_world.sql | 3 +++ 3 files changed, 7 insertions(+) create mode 100644 hello_world.sql 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