SQL Plus: Difference between revisions

Content deleted Content added
History: Updated "As of" statement.
Line 16:
An Oracle programmer in the appropriately configured software environment can launch SQL*Plus, for example, by entering:
 
:{{code| $ sqlplus scott/tiger|lang=oracle8}}
 
where the Oracle user <code>scott</code> has the password <code>tiger</code>. SQL*Plus then presents a prompt with the default form of:
 
: {{samp|SQL&gt;}}
 
Interactive use can then start by entering a SQL statement (terminated by a semicolon), a PL/SQL block, or another command. For example:
 
: {{samp|SQL&gt;}} {{code|select 'Hello world' as example from dual;|lang=oracle8}}
 
: {{samp|EXAMPLE}}
: {{samp|--------------------------------}}
: {{samp|Hello world}}
 
== History ==