MySQL STRCMP() Functie
Voorbeeld
Vergelijk twee strings:
SELECT STRCMP("SQL Tutorial",
"SQL Tutorial");
Definitie en gebruik
De functie STRCMP() vergelijkt twee strings.
Syntaxis
STRCMP(string1, string2)
Parameterwaarden
Parameter | Description |
---|---|
string1, string2 | Required. The two strings to be compared |
Retourwaarden
- Als string1 = string2 , retourneert deze functie 0
- Als string1 < string2 , retourneert deze functie -1
- Als string1 > string2 , retourneert deze functie 1
Technische details
Werkt in: | Van MySQL 4.0 |
---|
Meer voorbeelden
Voorbeeld
Vergelijk twee strings:
SELECT STRCMP("SQL Tutorial",
"HTML Tutorial");