Fonction MySQL STRCMP()
Exemple
Comparez deux chaînes :
SELECT STRCMP("SQL Tutorial",
"SQL Tutorial");
Définition et utilisation
La fonction STRCMP() compare deux chaînes.
Syntaxe
STRCMP(string1, string2)
Valeurs des paramètres
Parameter | Description |
---|---|
string1, string2 | Required. The two strings to be compared |
Valeurs de retour
- Si string1 = string2 , cette fonction renvoie 0
- Si string1 < string2 , cette fonction renvoie -1
- Si string1 > string2 , cette fonction renvoie 1
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|
Plus d'exemples
Exemple
Comparez deux chaînes :
SELECT STRCMP("SQL Tutorial",
"HTML Tutorial");