Curso de MySQL
Consultas, lista de correo 'C++ Con Clase' 'MySQL Con Clase' página de entrada Tabla de contenido Contactar con Webmaster
Curso Sentencias Funciones API C

SQL

Funciones

Matemáticas Tiempo Cadena Conversión Control de Flujo Encriptado Información BENCHMARK CHARSET COERCIBILITY COLLATION CONNECTION_ID CURRENT_USER DATABASE FOUND_ROWS LAST_INSERT_ID SESSION_USER SYSTEM_USER USER VERSION Genéricas GROUP BY

FIELD()

FIELD(str,str1,str2,str3,...)

Devuelve el índice de 'str' en la lista 'str1', 'str2', 'str3', .... Devuelve o si 'str' no se encunetra. FIELD() es el complemento de ELT():

mysql> SELECT FIELD('ej', 'Hej', 'ej', 'Heja', 'hej', 'foo');
+------------------------------------------------+
| FIELD('ej', 'Hej', 'ej', 'Heja', 'hej', 'foo') |
+------------------------------------------------+
|                                              2 |
+------------------------------------------------+
1 row in set (0.00 sec)

mysql> SELECT FIELD('fo', 'Hej', 'ej', 'Heja', 'hej', 'foo');
+------------------------------------------------+
| FIELD('fo', 'Hej', 'ej', 'Heja', 'hej', 'foo') |
+------------------------------------------------+
|                                              0 |
+------------------------------------------------+
1 row in set (0.00 sec)