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 NULL-waardes


Wat is 'n NULL-waarde?

'n Veld met 'n NULL-waarde is 'n veld met geen waarde nie.

As 'n veld in 'n tabel opsioneel is, is dit moontlik om 'n nuwe rekord in te voeg of 'n rekord by te werk sonder om 'n waarde by hierdie veld te voeg. Dan sal die veld gestoor word met 'n NULL waarde.

Let wel: 'n NULL-waarde verskil van 'n nulwaarde of 'n veld wat spasies bevat. 'n Veld met 'n NULL-waarde is een wat leeg gelaat is tydens rekordskepping!


Hoe om te toets vir NULL-waardes?

Dit is nie moontlik om vir NULL-waardes te toets met vergelykingsoperateurs, soos =, < of <>.

Ons sal eerder die IS NULLen IS NOT NULLoperateurs moet gebruik.

IS NULL Sintaksis

SELECT column_names
FROM table_name
WHERE column_name IS NULL;

IS NIE NULL sintaksis nie

SELECT column_names
FROM table_name
WHERE column_name IS NOT NULL;

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


Die IS NULL-operateur

Die IS NULLoperateur word gebruik om te toets vir leë waardes (NULL-waardes).

Die volgende SQL lys alle kliënte met 'n NULL waarde in die "Adres" veld:

Voorbeeld

SELECT CustomerName, ContactName, Address
FROM Customers
WHERE Address IS NULL;

Wenk: Gebruik altyd IS NULL om NULL-waardes te soek.


Die IS NIE NULL-operateur nie

Die IS NOT NULLoperateur word gebruik om te toets vir nie-leë waardes (NIE NULL waardes nie).

Die volgende SQL lys alle kliënte met 'n waarde in die "Adres" veld:

Voorbeeld

SELECT CustomerName, ContactName, Address
FROM Customers
WHERE Address IS NOT NULL;

Toets jouself met oefeninge

Oefening:

Kies alle rekords van Customerswaar die PostalCodekolom leeg is.

SELECT * FROM Customers
WHERE   ;