DEV Community

Cover image for How to write Hello World in Oracle SQL
Faris Durrani
Faris Durrani

Posted on

How to write Hello World in Oracle SQL

The below query returns a simple 'hello world' message in Oracle SQL (application used in Oracle SQL Developer):

select 'hello world' from dual;
Enter fullscreen mode Exit fullscreen mode

hello world command

You can

Safe harbor statement

The information provided on this channel/article/story is solely intended for informational purposes and cannot be used as a part of any contractual agreement. The content does not guarantee the delivery of any material, code, or functionality, and should not be the sole basis for making purchasing decisions. The postings on this site are my own and do not necessarily reflect the views or work of Oracle or Mythics, LLC.

This work is licensed under a Creative Commons Attribution 4.0 International License.

Top comments (0)