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
What are the different types of triggers?
What are the types of join in sql?
Why are aggregate functions called so?
Write a unique difference between a function and a stored procedure.
what is a tablespace? : Sql dba
Can we connect to postgresql using sql developer?
what is a stored procedure? : Sql dba
Compare sql & pl/sql
What is the difference between database trigger and stored procedure?
What is a unique constraint?
Explain autonomous transaction.
Will truncate release space?
what is the difference between char_length and length? : Sql dba
Are stored procedures compiled?
what are all types of user defined functions? : Sql dba