sql remove dumplicate code example
Example 1: how to remove duplicate in sql
Distinct: helps to remove all the duplicate
records when retrieving the records from a table.
SELECT DISTINCT FIRST_NAME FROM VISITORS;
Example 2: SQL DELETE-Klausel
Mit DELETE werden einzelne oder mehrere Datensätze gelöscht. Mit WHERE
werden nur bestimmte Datensätez gelöscht.
DELETE FROM suppliers
WHERE
supplier_name = 'Microsoft';