How to get the 3rd column(i.e all the data along with the
column name)in a table?
Answer Posted / ramesh
Column Names of a table are stored in the data dictionary
table user_tab_columns along with column_id. By referring
column_id we can display the column name as :
select column_name from user_tab_columns where table_name
= 'EMP' and column_id = 3;
| Is This Answer Correct ? | 10 Yes | 6 No |
Post New Answer View All Answers
How can we debug in PL/SQL?
What is data definition language?
Why is a primary key important?
What is dense_rank in sql?
What are sql objects?
What is a sql trace file?
How do you modify a column in sql?
What is dml with example?
How do I run sql?
What is the execution plan in sql?
Explain two easy sql optimizations.
What is record in pl sql?
What is the difference between delete and truncate commands?
What is data profiling in sql?
How do I run a pl sql program?