Oracle SQL/ PLSQLSection 1.1: Hello World

 Oracle SQL/ PLSQLSection 1.1: Hello World 






 SELECT 'Hello world!' FROM dual;


In Oracle's flavor of SQL, "dual is just a convenience table". It was originally intended to double rows via a JOIN, but now contains one row with a DUMMY value of 'X'

Post a Comment

0 Comments