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 is the difference between the sql*loader and import utilities? : aql loader
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
Are stored procedures faster than dynamic sql?
what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba
How do I access sql anywhere database?
Difference between global and parameter variables?
How to combine two stored procedures in sql?
Is primary key an index?
What is sql*plus?
what is the use of double ampersand (&&) in sql queries?
What is vector point function?
What is nvarchar in sql?
How does a self join work?
What is an intersect?
How to load data with sql*loader?