BPCHARCMPfunzione - Amazon Redshift

Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.

BPCHARCMPfunzione

Confronta il valore di due stringhe e restituisce un integer. Se le stringhe sono identiche, la funzione restituisce 0. Se la prima stringa è alfabeticamente posteriore, la funzione restituisce 1. Se la seconda stringa è maggiore, la funzione restituisce -1.

Per i caratteri multibyte, il confronto si basa sulla codifica dei byte.

Sinonimo di BTTEXTCMPFunzione PATTERN _ _.

Sintassi

BPCHARCMP(string1, string2)

Argomenti

string1

Una stringa CHAR o una stringa VARCHAR.

string2

Una stringa CHAR o una stringa VARCHAR.

Tipo restituito

INTEGER

Esempi

Gli esempi seguenti utilizzano la USERS tabella del database TICKIT di esempio. Per ulteriori informazioni, consulta Database di esempio.

Per determinare se il nome di un utente è alfabeticamente maggiore del cognome dell'utente per le prime dieci voci della USERS tabella, utilizzate l'esempio seguente. Per le voci in cui la stringa for FIRSTNAME è successiva in ordine alfabetico alla stringa forLASTNAME, la funzione restituisce. 1 Se il LASTNAME è alfabeticamente successivo aFIRSTNAME, la funzione restituisce. -1

SELECT userid, firstname, lastname, BPCHARCMP(firstname, lastname) FROM users ORDER BY 1, 2, 3, 4 LIMIT 10; +--------+-----------+-----------+-----------+ | userid | firstname | lastname | bpcharcmp | +--------+-----------+-----------+-----------+ | 1 | Rafael | Taylor | -1 | | 2 | Vladimir | Humphrey | 1 | | 3 | Lars | Ratliff | -1 | | 4 | Barry | Roy | -1 | | 5 | Reagan | Hodge | 1 | | 6 | Victor | Hernandez | 1 | | 7 | Tamekah | Juarez | 1 | | 8 | Colton | Roy | -1 | | 9 | Mufutau | Watkins | -1 | | 10 | Naida | Calderon | 1 | +--------+-----------+-----------+-----------+

Per restituire tutte le voci della USERS tabella in cui ritorna la funzione0, utilizzate l'esempio seguente. La funzione restituisce 0 when FIRSTNAME è identica aLASTNAME.

SELECT userid, firstname, lastname, BPCHARCMP(firstname, lastname) FROM users WHERE BPCHARCMP(firstname, lastname)=0 ORDER BY 1, 2, 3, 4; +--------+-----------+----------+-----------+ | userid | firstname | lastname | bpcharcmp | +--------+-----------+----------+-----------+ | 62 | Chase | Chase | 0 | | 4008 | Whitney | Whitney | 0 | | 12516 | Graham | Graham | 0 | | 13570 | Harper | Harper | 0 | | 16712 | Cooper | Cooper | 0 | | 18359 | Chase | Chase | 0 | | 27530 | Bradley | Bradley | 0 | | 31204 | Harding | Harding | 0 | +--------+-----------+----------+-----------+