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 execute immediate?
What is bind variable in pl sql?
How do I partition a table in sql?
Explain about various levels of constraint.
What is microsoft t sql?
how is myisam table stored? : Sql dba
Is join and inner join the same?
What are sql built in functions?
How many types of indexes are there in sql?
What is server name sql?
State few characteristics of pl/sql?
What are system versioned tables?
what is union? : Sql dba
what does the t-sql command ident_incr does? : Transact sql
How to read xml file in oracle pl sql?