I have run following query .
select COLUMN_NAME from DBA_TAB_COLUMNS where TABLE_NAME='ADP _DST';
It will give me the out of all column_name in ADP_DST table.
I also get the colum_name from DESC ADP_DST
What I obseverved that the oder of column_name by query is different from that of Sql Command ie DESC
I wanted the same output (order of column) of query that i would get it from DESC command .
Could u please give me the modified query .How to acheive that .
select COLUMN_NAME from DBA_TAB_COLUMNS where TABLE_NAME='ADP _DST';
It will give me the out of all column_name in ADP_DST table.
I also get the colum_name from DESC ADP_DST
What I obseverved that the oder of column_name by query is different from that of Sql Command ie DESC
I wanted the same output (order of column) of query that i would get it from DESC command .
Could u please give me the modified query .How to acheive that .
Comment