Create table emp
(id number(9), name varchar2(20),salary
number(9,2));
The table has 100 records after table created.Now i nee to
change id's Datatype is to be Varchar2(15). now
Alter table emp modify(id varchar2(15),name varchar2(20),
salary number(9,2));
Whether it will work or returns error? post answer with
explanation.
Answer Posted / nzabin
SQL Error: ORA-01439: column to be modified must be empty to change datatype
01439. 00000 - "column to be modified must be empty to change datatype"
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you update f as m and m as f from the below table testtable?
How can a function retun more than one value in oracle with proper example?
what is isam? : Sql dba
What is application trigger?
What does joining a thread mean?
Can a procedure in a package be overloaded?
what is 'mysqladmin' in mysql? : Sql dba
What is the use of <> sql?
what is self join and what is the requirement of self join? : Sql dba
What is pl sql record in oracle?
What is the difference between a subquery and a join?
What do you know by pl/sql cursors?
How is pl sql different from sql?
Can there be more than one function with a similar name in a pl/sql block?
Are sql database names case sensitive?