what is the syntax of ALTER command?

Answers were Sorted based on User's Feedback



what is the syntax of ALTER command?..

Answer / sridevi

alter table <table name> modify (columnname newdatatype
(size))

Is This Answer Correct ?    18 Yes 4 No

what is the syntax of ALTER command?..

Answer / sridevi

alter table <tablename> add column(col.name(size))

Is This Answer Correct ?    17 Yes 8 No

what is the syntax of ALTER command?..

Answer / rajini

alter table tablename add(colname datatype,colname1
datatype...);
alter table tablename modify(colname datatype,colname1
datatype..);

Is This Answer Correct ?    9 Yes 1 No

what is the syntax of ALTER command?..

Answer / guest

alter table tablename add(col1 datatype,col2 datatype...);
alter table tablenamemodify(col1 datatype,col2 datatype..);

Is This Answer Correct ?    8 Yes 2 No

what is the syntax of ALTER command?..

Answer / guest

alter table <table name> modify(column definition...);
alter table <table name> add(column definitions...);

Is This Answer Correct ?    7 Yes 2 No

what is the syntax of ALTER command?..

Answer / guest

Alter table tablename(data types1,...datatypen)

Is This Answer Correct ?    9 Yes 7 No

what is the syntax of ALTER command?..

Answer / suri

alter table tablename add(colname datatype,colname1
datatype...);
alter table tablename modify(colname datatype,colname1
datatype..);

Is This Answer Correct ?    2 Yes 1 No

what is the syntax of ALTER command?..

Answer / sandeep

alter table <table_name> add column <Data type of the column>;

Is This Answer Correct ?    2 Yes 3 No

Post New Answer

More Oracle General Interview Questions

What is oracle latest version?

0 Answers  


What is autonomous transaction?

6 Answers  


How to use existing values in update statements using oracle?

0 Answers  


Explain an integrity constrains?

0 Answers  


Can we write dml statement in function in oracle?

0 Answers  






A and B are tables. x is a column. Then What is difference between A.x = B.x(+) and A.x = B.x ?

7 Answers   Cognizant, IBM,


Ho to insert no. of records at a time..i mean i want to insert 100 records at a time into a table

5 Answers  


What privilege is needed for a user to create tables in oracle?

0 Answers  


How to retrieve data from an cursor to a record?

0 Answers  


you are sorting a table using "order by"(descending) clause of a column which contains a null value...whether that row containing null value will come first or last in the output??

2 Answers   BirlaSoft,


Respected sir, Please send me technical questions related to oracle apps..

0 Answers  


What is cluster Key ?

3 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)