Exforsys
+ Reply to Thread
Results 1 to 7 of 7

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?...

  1. #1
    peprasanth is offline Junior Member Array
    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?


  2. #2
    urtechguru is offline Junior Member Array
    Join Date
    Jun 2008
    Answers
    2

    Thumbs up delete duplicates rows from table

    u can use WHERE statement to remove duplicate rows
    as:
    delete from employees
    where department_id =30;


  3. #3
    urtechguru is offline Junior Member Array
    Join Date
    Jun 2008
    Answers
    2

    How to delete duplicate rows from a table ?

    u can use where statement to delete duplicate rows.


  4. #4
    zamu84 is offline Junior Member Array
    Join Date
    May 2009
    Answers
    1

    Smile 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


  5. #5
    shadyfos is offline Banned Array
    Join Date
    May 2009
    Answers
    3

    How to delete multiple rows from a table

    Delete from table
    where department_id = 30


  6. #6
    shadyfos is offline Banned Array
    Join Date
    May 2009
    Answers
    3
    Delete from employees
    where department_id = 30
    order by department_id


  7. #7
    shadyfos is offline Banned Array
    Join Date
    May 2009
    Answers
    3
    You use the where clause to specify rows to be deleted


    •    Sponsored Ads



Latest Article

Network Security Risk Assessment and Measurement

Read More...