what is the syntax of DELETE command?
Answers were Sorted based on User's Feedback
delete from <tablename> [where <condition> ]
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / kalicharan karsh
delete from <tablename> [where <condition> ]
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ajeet singh
For delete any record from table :-
delete form <tablename> where <condition>;
For delete any column fromm table :-
alter table <tablename>
drop column <columnname>;
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / guest
select * from tablename
where col1=xyz
delete col1;
| Is This Answer Correct ? | 2 Yes | 7 No |
What is a Segment ?
what is the maximum number of indexes i can create for a table? What happens if i create indexes for all the columns of a table? Will it slow down the speed of retrieval
Point out the difference between user tables and data dictionary?
How to use "startup" command to start default instance?
13. Display the second to fifth characters in each client name.
What are the different types of database objects?
How can one skip any number of rows while loading the DB tables with SQL Loader? Similarly how can one skip any column?
 How to use an oracle sequence generator in a mapping?
9)When information has to be stored w.r.t employees and their respective departments, which of the following is the Correct formulation of entries? A)Employee and department would together be represented as an entity. B)This is too less information to decide on entities. C)An employee would be one entity and a department would be another. D)Such a scenario cannot be modelled in RDBMS
Explain an index segment?
How to insert a record into a table?
How to write a query with a full outer join in oracle?