hi,
I want to create only a table without insertions of data. And also table contains constraints like not_null, unique, primary key etc.
Ex: (In sql) create table emp (id int(5) primary key, name varchar2(20)); , so it will create only table. when we want to see the table structure then "desc emp;" it will show the structure of table.