Funzione MySQL FIND_IN_SET()
Esempio
Cerca "q" nell'elenco delle stringhe:
SELECT FIND_IN_SET("q", "s,q,l");
Definizione e utilizzo
La funzione FIND_IN_SET() restituisce la posizione di una stringa all'interno di un elenco di stringhe.
Sintassi
FIND_IN_SET(string, string_list)
Valori dei parametri
Parameter | Description |
---|---|
string | Required. The string to search for |
string_list | Required. The list of string values to be searched (separated by commas) |
Valori di ritorno
- Se string non viene trovata in string_list , questa funzione restituisce 0
- Se string o string_list è NULL, questa funzione restituisce NULL
- Se string_list è una stringa vuota (""), questa funzione restituisce 0
Dettagli tecnici
Funziona in: | Da MySQL 4.0 |
---|
Altri esempi
Esempio
Cerca "a" nell'elenco delle stringhe:
SELECT FIND_IN_SET("a", "s,q,l");
Esempio
Cerca "q" nell'elenco delle stringhe (l'elenco delle stringhe è NULL):
SELECT FIND_IN_SET("q", null);