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 / krishna
It wil not work
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What are character functions in sql?
Define join and name different types of joins?
What is the difference between left join and right join?
what is a relationship and what are they? : Sql dba
Do we need commit after truncate?
Are stored procedures compiled?
Why is sql better than hql?
What is a unique constraint?
What is not equal in sql?
How do I edit a trigger in sql developer?
What is a full join?
What is the usage of nvl function?
Can we use the cursor's to create the collection in PL/SQL?
how to enter characters as hex numbers? : Sql dba
What is out parameter used for eventhough return statement can also be used in pl/sql?