I have created a table BORROW with the following attributes and datatypes of the corresponding columns as shown below:
SQL> CREATE TABLE BORROW
2 (
3 LOANNO VARCHAR2(5),
4 CNAME VARCHAR2(20),
5 BNAME VARCHAR2(20),
6 AMOUNT NUMBER(8,2)
7 );
Table created.
SQL> DESCRIBE BORROW;
Name Null? Type
----------------------------------------- -------- ----------------------------
LOANNO VARCHAR2(5)
CNAME VARCHAR2(20)
BNAME VARCHAR2(20)
AMOUNT NUMBER(8,2)
When I am running the DESCRIBE command, I want it to show like it is shown in the picture instead: (https://i.stack.imgur.com/V001t.jpg)
Does anyone know how to do this?
Thanks in advance :)