
- Forum
- Database
- Oracle Database
- How to delete duplicate rows from a table ?
How to delete duplicate rows from a table ?
This is a discussion on How to delete duplicate rows from a table ? within the Oracle Database forums, part of the Database category; how to delete duplicate rows from a table with out using rowid?...
-
06-18-2008, 12:14 AM #1
- Join Date
- Jun 2008
- Answers
- 1
How to delete duplicate rows from a table ?
how to delete duplicate rows from a table with out using rowid?
-
06-28-2008, 10:36 AM #2
- Join Date
- Jun 2008
- Answers
- 2
delete duplicates rows from table
u can use WHERE statement to remove duplicate rows
as:
delete from employees
where department_id =30;
-
06-28-2008, 10:41 AM #3
- Join Date
- Jun 2008
- Answers
- 2
How to delete duplicate rows from a table ?
u can use where statement to delete duplicate rows.
-
removing the duplicate row
Hi u can delete the duplicate rows by using the function rowid
it shows unique id for each row, so that user can delete it very easily.
Thanks & Regards
Zamu
-
How to delete multiple rows from a table
Delete from table
where department_id = 30
-
Delete from employees
where department_id = 30
order by department_id
-
You use the where clause to specify rows to be deleted
-
Sponsored Ads

Reply With Quote





