write a query to delete similar records in different tables
with same structure
Answer Posted / vinoth kumar
DELETE FROM table1 WHERE
(col1,col2,..) IN (SELECT col1,col2,.. FROM table2 where
condition)
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
what is data manipulation language? : Sql dba
What is oracle pl sql developer?
Is sql developer case sensitive?
What is dba in sql? : SQL DBA
How many aggregate functions are available there in sql?
What is sql profiling in oracle?
How to get unique records from a table?
Is sqlexception checked or unchecked?
Can we use distinct and group by together?
what are the differences between binary and varbinary? : Sql dba
What is your daily office routine?
Does mysql_real_escape_string prevent sql injection?
What is the difference between instead of trigger and after trigger?
What is not in sql?
How does rowid help in running a query faster?