write a query to delete similar records in different tables
with same structure
Answer Posted / umadevi
example
delete from emp where deptno in (select deptno from dept
where emp.deptno=dept.deptno);
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
How to select 10 records from a table?
What is cte?
Can we insert in sql function?
List the ways to get the count of records in a table?
What is pragma in sql?
In pl/sql, what is bulk binding, and when/how would it help performance?
What are different types of tables in sql?
What are the subsets of sql?
What is difference between nchar and nvarchar?
How do you modify a column in sql?
What is the purpose of cursors in pl/sql?
How to change sql*plus system settings?
What is record variable?
How many sql statements are used? Define them.
Explain the uses of a database trigger?