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 date and time data types? : Sql dba
What is sql*loader?
Is there a way to automate sql execution from the command-line, batch job or shell script?
what does the t-sql command ident_incr does? : Transact sql
What is a sql select statement?
Explain 3 basic parts of a trigger.
What is Histogram?
Explain the difference between 'between' & 'and' operators in sql
How do I clear the screen in sql plus?
What is synchronized subquery?
How do you update a value in sql?
What operating systems are supported by oracle sql developer?
is it possible to pass an object or table to a procedure as an argument?
Which is faster view or stored procedure?
Does sql*plus have a pl/sql engine?