Collections:
Set Up SQL*Plus Output Format in Oracle
How To Set Up SQL*Plus Output Format in Oracle?
✍: FYIcenter.com
If you want to practice SQL statements with SQL*Plus, you need to set up your SQL*Plus output formatting parameter properly. The following SQL*Plus commands shows you some examples:
COLUMN id FORMAT 9999; COLUMN url FORMAT A24; COLUMN notes FORMAT A12; COLUMN counts FORMAT 999999; SET NULL 'NULL';
⇒ Insert a New Row into a Table in Oracle
⇐ Create a Test Table for DML Testing in Oracle
2020-01-29, 4279🔥, 0💬
Popular Posts:
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...
How To Disable a Login Name in SQL Server? If you want temporarily disable a login name, you can use...
How To Convert a Unicode Strings to Non-Unicode Strings in SQL Server Transact-SQL? Since Unicode ch...
What Is an Oracle Tablespace in Oracle? An Oracle tablespace is a big unit of logical storage in an ...
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...