Função MySQL STRCMP()
Exemplo
Compare duas strings:
SELECT STRCMP("SQL Tutorial",
"SQL Tutorial");
Definição e uso
A função STRCMP() compara duas strings.
Sintaxe
STRCMP(string1, string2)
Valores de parâmetro
Parameter | Description |
---|---|
string1, string2 | Required. The two strings to be compared |
Valores de retorno
- Se string1 = string2 , esta função retorna 0
- Se string1 < string2 , esta função retorna -1
- Se string1 > string2 , esta função retorna 1
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Compare duas strings:
SELECT STRCMP("SQL Tutorial",
"HTML Tutorial");