91-9990449935 0120-4256464 |
SQL DELETE DUPLICATE ROWSIf you have got a situation that you have multiple duplicate records in a table, so at the time of fetching records from the table you should be more careful. You make sure that you are fetching unique records instead of fetching duplicate records. To overcome with this problem we use DISTINCT keyword. It is used along with SELECT statement to eliminate all duplicate records and fetching only unique records. SYNTAX: The basic syntax to eliminate duplicate records from a table is: EXAMPLE: Let us take an example of STUDENT table.
Firstly we should check the SELECT query and see how it returns the duplicate percentage records.
Now let us use SELECT query with DISTINCT keyword and see the result. This will eliminate the duplicate entry.
Next TopicSQL Delete Database
|