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
Why self join is used in sql?
Can we use ddl statements in stored procedure sql server?
What is partition in sql query?
What are the different types of a subquery?
what are the different index configurations a table can have? : Sql dba
Write a sql query to get the third highest salary of an employee from employee_table?
describe transaction-safe table types in mysql : sql dba
What is cartesian join in sql?
What is range partitioning?
Explain the the update statement in sql?
What is cursor in pl sql with examples?
how to load data files into tables with 'mysqlimport'? : Sql dba
What is the difference between row level and statement level trigger?
Explain aggregate functions are available there in sql?
What are triggers and its types?