Collections:
Run SQL Commands in SQL*Plus in Oracle
How To Run SQL Commands in SQL*Plus in Oracle?
✍: FYIcenter.com
If you want to run a SQL command in SQL*Plus, you need to enter the SQL command in one or more lines and terminated with (;). The tutorial exercise below shows a good example:
SQL> SELECT 'Welcome!' FROM DUAL; 'WELCOME -------- Welcome! SQL> SELECT 'Welcome to FYIcenter.com tutorials!' 2 FROM DUAL 3 ; 'WELCOMETOFYICENTER.COMTUTORIALS!' ----------------------------------- Welcome to FYIcenter.com tutorials!
⇒ Run PL/SQL Statements in SQL*Plus in Oracle
⇐ Types of Commands Executed in SQL*Plus in Oracle
2020-08-03, 4087🔥, 1💬
Popular Posts:
How To Fix the INSERT Command Denied Error in MySQL? The reason for getting the "1142: INSERT comman...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...