How will we see framework of a table?
Answers were Sorted based on User's Feedback
Answer / yam
to see the framework of table use
DESCRIBE tablename;
or DESC tablename
Is This Answer Correct ? | 20 Yes | 1 No |
Answer / sudheer kumar mikkilineni
select dbms_metadata.get_ddl('TABLE','DEPT','SCOTT') from
dual;
Is This Answer Correct ? | 12 Yes | 0 No |
What is an index? What are the types of indexes? How many clustered indexes can be created on a table?
Can we use update in sql function?
Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)
What is a primary key called that is made up of more than one field?
What is difference between sql and excel?
What is pl/sql tables?
define join and explain different type of joins? : Sql dba
How to display the contents of a current record fetched in a reference cursor?
What is difference between % ROWTYPE and TYPE RECORD ?
suppose I have two table one Emp and other is dpt. Emp table has a field ,dept id,name ,sal and dpt table has a field dept id,dept name. Now I want to find out the emplyee list whose sal is between 2000-3000 from dept x.
7 Answers Geometric Software, IBM,
how to create table with in the procedure or function?
What is pl sql collection?