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, 3035🔥, 1💬
Popular Posts:
How To Convert Binary Strings into Hexadecimal Character Strings in SQL Server? When a query returns...
How To Disable a Login Name in SQL Server? If you want temporarily disable a login name, you can use...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How To Use "IF ... ELSE IF ..." Statement Structures in SQL Server Transact-SQL? "IF ... ELSE IF ......