MySQL- tutoriaal

MySQL TUIS MySQL-inleiding MySQL RDBMS

MySQL SQL

MySQL SQL MySQL KIES MySQL WAAR MySQL EN, OF, NIE MySQL BESTEL DEUR MySQL VOEG IN MySQL NULL-waardes MySQL-OPDATERING MySQL SKEE MySQL-LIMIET MySQL MIN en MAX MySQL COUNT, AVG, SUM MySQL LIKE MySQL Wildcards MySQL IN MySQL TUSSEN MySQL aliasse MySQL sluit aan MySQL BINNE SLUIT AAN MySQL LOS LINKS AAN MySQL REGS SLUIT AAN MySQL KRUIS SLUIT AAN MySQL Self Sluit aan MySQL UNIE MySQL GROEP DEUR MySQL HET MySQL BESTAAN MySQL ENIGE, ALMAL MySQL INSERT SELECT MySQL-GEVAL MySQL nul-funksies MySQL-kommentaar MySQL-operateurs

MySQL- databasis

MySQL Skep DB MySQL Drop DB MySQL Skep tabel MySQL Drop Table MySQL Verander Tabel MySQL-beperkings MySQL nie nul nie MySQL Uniek MySQL-primêre sleutel MySQL buitelandse sleutel MySQL-tjek MySQL verstek MySQL Skep indeks MySQL Outo-verhoging MySQL-datums MySQL-aansigte

MySQL- verwysings

MySQL-datatipes MySQL-funksies

MySQL voorbeelde

MySQL voorbeelde MySQL Vasvra MySQL-oefeninge

MySQL DELETE- verklaring


Die MySQL DELETE-verklaring

Die DELETEstelling word gebruik om bestaande rekords in 'n tabel te skrap.

SKEE sintaksis

DELETE FROM table_name WHERE condition;

Let wel: Wees versigtig wanneer rekords in 'n tabel uitvee! Let op die WHEREklousule in die DELETEverklaring. Die WHEREklousule spesifiseer watter rekord(s) geskrap moet word. As jy die klousule weglaat WHERE, sal alle rekords in die tabel uitgevee word!


Demo databasis

Hieronder is 'n keuse uit die "Klante"-tabel in die Noordewind-voorbeelddatabasis:

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

Die volgende SQL-stelling verwyder die kliënt "Alfreds Futterkiste" uit die "Klante"-tabel:

Voorbeeld

DELETE FROM Customers WHERE CustomerName='Alfreds Futterkiste';

Die "Klante"-tabel sal nou soos volg lyk:

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

Vee alle rekords uit

Dit is moontlik om alle rye in 'n tabel uit te vee sonder om die tabel uit te vee. Dit beteken dat die tabelstruktuur, kenmerke en indekse ongeskonde sal wees:

DELETE FROM table_name;

Die volgende SQL-stelling verwyder alle rye in die "Klante"-tabel, sonder om die tabel uit te vee:

Voorbeeld

DELETE FROM Customers;

Toets jouself met oefeninge

Oefening:

Vee al die rekords uit die Customerstabel uit waar die Countrywaarde 'Noorweë' is.

 Customers
 Country = 'Norway';