I just created a table in Oracle sqlplus.
sql>create table test1
(Name varchar(15), Mobile _num number(15)) ;
so I want a solution where I can see again this definition. just typing a command or other solution.
output should be in same way
create table test1
(Name varchar(15), Mobile _num number(15)) ;