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 / tajuddin
It will work your query 100% will work
Chers
Taj
| Is This Answer Correct ? | 9 Yes | 16 No |
Post New Answer View All Answers
What is pl sql quora?
how can we take a backup of a mysql table and how can we restore it. ? : Sql dba
What is the most common sql injection tool?
How to read/write files from pl/sql?
How to set up sql*plus output format in oracle?
What are the two parts of design view?
what are the advantages of sql ? : Sql dba
what is self join and what is the requirement of self join? : Sql dba
What will you get by the cursor attribute sql%found?
how to return query output in html format? : Sql dba
How do I run a sql query in pgadmin 4?
How to move files from one directory to another in pl sql?
What is rank function in sql?
How many joins can you have in sql?
Explain raise_application_error.