What MySQL returns if the search string is not in the list of strings provided as argument in FIELD() function?


Suppose if the search string is not in the list of strings provided as the arguments in FIELD() function then MySQL will return 0 as output.

Example

mysql> Select FIELD('Ram','New','Delhi');
+----------------------------+
| FIELD('Ram','New','Delhi') |
+----------------------------+
|                         0  |
+----------------------------+
1 row in set (0.00 sec)

Updated on: 20-Jun-2020

51 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements