Let us suppose we have a table with structure in order

empno
empname
empdesig
empcountry

and now i want to re-organize the columns of this table to

empno
empdesig
empname
empcountry

how can i do this with queries ?

assume that table contains the data.

Answers were Sorted based on User's Feedback



Let us suppose we have a table with structure in order empno empname empdesig empcountry an..

Answer / jyothi

there is only one way to to re-arrange the table
that is views...

create view <view-name>as select <fields> from <tablename>
.........
for example..
create view vw as select empno,empdesig,empname,empcountry
from <tablename>...
(u can get message that is view created)
just display the data using viewname(vw)..

Is This Answer Correct ?    2 Yes 0 No

Let us suppose we have a table with structure in order empno empname empdesig empcountry an..

Answer / s. syam sundar

try this

create table emp1 as select
empno,empdesig,empname,empcountry from emp


this would creat a new table named as emp1 and
u can retrive the data from this table as of emp
but constraints,indexs which u have on emp table are
created on this emp1 table

Is This Answer Correct ?    0 Yes 0 No

Let us suppose we have a table with structure in order empno empname empdesig empcountry an..

Answer / bala

try updating the values for COLUMN_ID in the
ALL_TAB_COLUMNS table..using Admin Privilege. to update
this table...

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More SQL PLSQL Interview Questions

What does 0 mean in sql?

0 Answers  


What are the built in functions of sql?

0 Answers  


Can we rollback after truncate?

0 Answers  


What are the advantages of the packages

6 Answers   Oracle,


what is difference between pass by value and eference by value in oracle plsql

1 Answers  






What is the difference between distinct and unique in sql?

0 Answers  


What is sql mysql pl sql oracle?

0 Answers  


What are the various restrictions imposed on view in terms of dml?

0 Answers  


What is the basic structure of PL/SQL ?

6 Answers  


what is rdbms? : Sql dba

0 Answers  


what is oracle sql,pl/sql with interfaces

2 Answers   TCS,


How do I view a table in sql?

0 Answers  


Categories