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 IF() Funksie

❮ MySQL-funksies

Voorbeeld

Gee "JA" terug as die voorwaarde WAAR is, of "NEE" as die voorwaarde ONWAAR is:

SELECT IF(500<1000, "YES", "NO");

Definisie en gebruik

Die IF()-funksie gee 'n waarde terug as 'n voorwaarde WAAR is, of 'n ander waarde as 'n voorwaarde ONWAAR is.

Sintaksis

IF(condition, value_if_true, value_if_false)

Parameterwaardes

Parameter Description
condition Required. The value to test
value_if_true Required. The value to return if condition is TRUE
value_if_false Required. The value to return if condition is FALSE

Tegniese besonderhede

Werk in: Van MySQL 4.0

Meer voorbeelde

Voorbeeld

Gee 5 terug as die voorwaarde WAAR is, of 10 as die voorwaarde ONWAAR is:

SELECT IF(500<1000, 5, 10);

Voorbeeld

Toets of twee stringe dieselfde is en gee "JA" as hulle is, of "NEE" indien nie:

SELECT IF(STRCMP("hello","bye") = 0, "YES", "NO");

Voorbeeld

Gee "MEER" terug as die voorwaarde WAAR is, of "MINDER" as die voorwaarde ONWAAR is:

SELECT OrderID, Quantity, IF(Quantity>10, "MORE", "LESS")
FROM OrderDetails;

❮ MySQL-funksies