what is the syntax of DROP command?
Answers were Sorted based on User's Feedback
DROP object <object name>;
object means database object like table,index,view,sequence
etc.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ruchika jena
If u want to drop a table then the command is
drop table <table_name>;
If u want to drop a column_name then the command is
alter table <table_name> drop column <column_name>;
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ch.ramesh
Drop is used to drop the total table
from data base
syntax: drop table <tablename>
note: there is no rollback command for drop
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / yeshwanth kumar b.k
hey there is addition to the above command is
DROP TABLE <table_name> [PURGE][CASCADE CONSTRAINTS];
Is This Answer Correct ? | 0 Yes | 0 No |
How to invoke the data pump export utility?
What is the purpose of tables, private synonyms and public synonyms in Oracle?
How to convert the date format from dd/mm/yyyy to mm/dd/yyyy. (for eg). 22/05/2008 to 05/22/2008. when u use to_char(), it tells the month is invalid. how to resolve this problem.tel with eg.
Explain the use of Merge statement in oracle 11g
How to run create database statement?
What is an oracle recycle bin?
can you explain performance tunning in oracle(sql,PL/SQL)
how to find the n'th highest salary from emp ?
What is the difference between count (*), count (expression), count (distinct expression)?
What is background process in Oracle?
What is the usage of merge statement?
Explain oracle instance.