SQL    up
 
  Description: SQL stands for Structured Query Language.


 Hello World   Michael Neumann
SELECT 'Hello World'
Prints "Hello World" onto the screen.


 Hello World   Oracle SQL   Michael Neumann
SELECT 'Hello World' FROM dual;
Prints "Hello World" onto the screen.