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.

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sql catalog?

769


Where is pl sql used?

681


How to add a column ‘salary’ to a table employee_details?

775


Why do we use subquery?

704


What are the various levels of constraints?

859


Does truncate release storage space?

769


What are different types of keys?

738


What is schema in sql?

686


What is the benefit of foreign key?

717


What is a relationship and what are they?

792


What is the use of procedures?

716


Can a table contain multiple primary key’s?

810


Write a sql query to find the names of employees that begin with ‘a’?

744


Can we update views in sql?

687


What is the difference between stored procedure and view?

742