MySQL -zelfstudie

MySQL HOME MySQL-intro MySQL RDBMS

MySQL SQL

MySQL SQL MySQL SELECT MySQL WAAR? MySQL EN, OF, NIET MySQL BESTELLEN DOOR MySQL INVOEGEN IN MySQL NULL-waarden MySQL-UPDATE MySQL VERWIJDEREN MySQL-LIMIET MySQL MIN en MAX MySQL-COUNT, AVG, SUM MySQL LIKE MySQL-jokertekens MySQL IN MySQL TUSSEN MySQL-aliassen MySQL wordt lid MySQL INNER JOIN MySQL LEFT JOIN MySQL RECHTS AANMELDEN MySQL CROSS JOIN Zelf lid worden van MySQL MySQL UNION MySQL GROEP DOOR MySQL HEBBEN MySQL BESTAAT MySQL ELK, ALLES MySQL INSERT SELECT MySQL-CASE MySQL Null-functies MySQL-opmerkingen MySQL-operators

MySQL- database

MySQL DB maken MySQL Drop DB MySQL-tabel maken MySQL-droptabel MySQL Wijzig Tabel MySQL-beperkingen MySQL Niet Null MySQL Uniek MySQL primaire sleutel MySQL-buitenlandse sleutel MySQL-controle MySQL-standaard MySQL-index maken MySQL automatisch verhogen MySQL-datums MySQL-weergaven

MySQL- referenties

MySQL-gegevenstypen MySQL-functies

MySQL- voorbeelden

MySQL-voorbeelden MySQL-quiz MySQL-oefeningen

MySQL DELETE- instructie


De MySQL DELETE-instructie

De DELETEinstructie wordt gebruikt om bestaande records in een tabel te verwijderen.

DELETE-syntaxis

DELETE FROM table_name WHERE condition;

Opmerking: wees voorzichtig bij het verwijderen van records in een tabel! Let op de WHEREclausule in de DELETEverklaring. De WHEREclausule specificeert welke record(s) moeten worden verwijderd. Als u de WHEREclausule weglaat, worden alle records in de tabel verwijderd!


Demodatabase

Hieronder vindt u een selectie uit de tabel "Klanten" in de voorbeelddatabase van Northwind:

CustomerID CustomerName ContactName Address City PostalCode Country
1

Alfreds Futterkiste Maria Anders Obere Str. 57 Berlin 12209 Germany
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 05021 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 05023 Mexico
4

Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK
5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S-958 22 Sweden


SQL DELETE Voorbeeld

De volgende SQL-instructie verwijdert de klant "Alfreds Futterkiste" uit de tabel "Klanten":

Voorbeeld

DELETE FROM Customers WHERE CustomerName='Alfreds Futterkiste';

De tabel "Klanten" ziet er nu als volgt uit:

CustomerID CustomerName ContactName Address City PostalCode Country
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 05021 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 05023 Mexico
4

Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK
5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S-958 22 Sweden

Alle records verwijderen

Het is mogelijk om alle rijen in een tabel te verwijderen zonder de tabel te verwijderen. Dit betekent dat de tabelstructuur, attributen en indexen intact blijven:

DELETE FROM table_name;

De volgende SQL-instructie verwijdert alle rijen in de tabel "Klanten", zonder de tabel te verwijderen:

Voorbeeld

DELETE FROM Customers;

Test jezelf met oefeningen

Oefening:

Verwijder alle records uit de Customerstabel waar de Countrywaarde 'Noorwegen' is.

 Customers
 Country = 'Norway';