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
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 |
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 |
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 |
What does 0 mean in sql?
What are the built in functions of sql?
Can we rollback after truncate?
What are the advantages of the packages
what is difference between pass by value and eference by value in oracle plsql
What is the difference between distinct and unique in sql?
What is sql mysql pl sql oracle?
What are the various restrictions imposed on view in terms of dml?
What is the basic structure of PL/SQL ?
what is rdbms? : Sql dba
what is oracle sql,pl/sql with interfaces
How do I view a table in sql?