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 UPDATE- verklaring


De MySQL UPDATE-verklaring

De UPDATEinstructie wordt gebruikt om de bestaande records in een tabel te wijzigen.

UPDATE-syntaxis

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;

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


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

UPDATE-tabel

Het volgende SQL-statement werkt de eerste klant (CustomerID = 1) bij met een nieuwe contactpersoon en een nieuwe stad.

Voorbeeld

UPDATE Customers
SET ContactName = 'Alfred Schmidt', City = 'Frankfurt'
WHERE CustomerID = 1;

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

CustomerID CustomerName ContactName Address City PostalCode Country
1

Alfreds Futterkiste Alfred Schmidt Obere Str. 57 Frankfurt 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


UPDATE meerdere records

Het is de WHEREclausule die bepaalt hoeveel records worden bijgewerkt.

De volgende SQL-instructie zal de PostalCode bijwerken naar 00000 voor alle records waar het land "Mexico" is:

Voorbeeld

UPDATE Customers
SET PostalCode = 00000
WHERE Country = 'Mexico';

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

CustomerID CustomerName ContactName Address City PostalCode Country
1

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

Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK

Update Waarschuwing!

Wees voorzichtig bij het bijwerken van records. Als u de WHEREclausule weglaat, worden ALLE records bijgewerkt!

Voorbeeld

UPDATE Customers
SET PostalCode = 00000;

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

CustomerID CustomerName ContactName Address City PostalCode Country
1

Alfreds Futterkiste Alfred Schmidt Obere Str. 57 Frankfurt 00000 Germany
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 00000 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 00000 Mexico
4

Around the Horn Thomas Hardy 120 Hanover Sq. London 00000 UK

Test jezelf met oefeningen

Oefening:

Werk de Citykolom van alle records in de Customerstabel bij.

 Customers
 City = 'Oslo';