×

MySQL FIELD() function

In this context, we will learn how we can use the MySQL FIELD() function with proper syntax and good examples.

Introduction of MySQL FIELD() function

The index position of a mentioned value in a list of given values is derived with the help of this function. For example, if the given list is ("1", "3", "2") and the value is "2" for which index position is going to be searched, then this function will return 3 as the index position.

Some important Features of the MySQL FIELD() function:

  • The index position of a mentioned value in a list of given values is found with the help of this function.
  • Two types of parameters are accepted by this function.
  • The first parameter is a specified value to search for the index, and the second parameter is the mentioned list of values to search for.
  • This function does a case-insensitive search.
  • This function will return 0 when the given value is not present in the specified list of given values,

Syntax of the MySQL FIELD() function

The syntax of the MySQL FIELD() function is given as follows:

FIELD(value, value1, value2, value3, ...)

Parameters or arguments used in MySQL FIELD() function:

There is two parameters accepted by the FIELD() function in MySQL, which are given as follows:

Value: Specified value to search for.

value1, value2, value3, …: these are the mentioned list of values to search.

Returns:

It will return the index position of a mentioned value in a list of given values.

Application used for FIELD() function:

The FIELD() function can be used in the given below MySQL versions.:

  • MySQL 5.7
  • MySQL 5.6
  • MySQL 5.5
  • MySQL 5.1
  • MySQL 5.0
  • MySQL 4.1
  • MySQL 4.0
  • MySQL 3.23

Examples of MySQL FIELD() function:

Now we will look into some MySQL FIELD() function examples and will explore how we can use the FIELD function in MySQL.

Example-1 :

Here, we will derive the index position 4 of the specified value 8 in the list of ("1", "3", "6", "8","7") with the help of the FIELD function in MySQL.

SELECT FIELD("1", "3", "6", "8","7");

Output :

4
1 row in set (0.00 sec)

Example-2 :

Here, we will derive the index position 1 of the specified value 2 in the list of ("2", "7", "3", "1", "5"). Here in the list, the value 5 is repeated two times, but the function returns the index position of the first position only.

SELECT FIELD("2", "7", "3", "1", "5");

Output :

1
1 row in set (0.00 sec)

Example-3 :

Here, we will derive the index position 2 of the specified value "a" in the list of ("b," "A," "a," "c"). Here alphabets "A" and "a" are used in the list, but this function returns the index position of "A" for value "a" this happens because this function performs a case-insensitive search.

SELECT FIELD("a," "b," "A," "a," "c");

Output :

2
1 row in set (0.00 sec)

Example-4 :

Here, we will derive the index position 3 of the specified value 4 in the numeric list of (0, 2, 4, 6, 8).

SELECT FIELD(4, 0, 2, 4, 6, 8);

Output :

3
1 row in set (0.00 sec)

Application:

This function is used to return the index position of a mentioned value in a list of given values.

Summary:

In the above context, we have learned how we can use the FIELD() function in MySQL used to return the index position of a mentioned value in a list of given values.


Related Topics

MySQL Control flow function

The control flow function uses values or operands for logical operations. These functions can works on single and multiple conditions. The control flow function is based on the Boolean expression....

3 minutes read.

MySQL NATURAL JOIN

The natural join combines multiple tables using a column with the same name and data type. This operation combines a row of the two tables using common columns. This join...

4 minutes read.

MySQL Queries

MySQL Queries MySQL supports SQL queries in the MySQL interface. These queries help to interact data with the application. MySQL uses create database, user database, create a table, truncate table, and...

13 minutes read.

MySQL SELF JOIN

This join links table with itself. The inner join, a self join, a right join, and a cross join are connected with two or more two tables. But, the "self...

4 minutes read.

MySQL MAX function

The MAX function is a type of aggregation function that determines the maximum value of the table data. This function works on numerical data type values. If the table displays...

4 minutes read.

MySQL Advance table Query

MySQL Advance table Query The table is created by index, rows, and columns in the MySQL database. The user saves their information in matrix format. The database requires a query to...

14 minutes read.

MySQL EXPORT_SET() function

In this context, we will learn how we can use the MySQL EXPORT_SET() function with proper syntax and good examples. Introduction of MySQL EXPORT_SET() function This function returns a string and shows...

3 minutes read.

MySQL Unique index

It helps to maintain data integrity to enforce the uniqueness of values in one or more columns. We can create more than one UNIQUE index in a single table, which...

3 minutes read.

MySQL LOG() function

In this context, we will learn how we can use the MySQL LOG () function with proper syntax and good examples. Introduction of MySQL LOG() function The LOG() function in MySQL is...

3 minutes read.

MySQL DAY() function

In this context, we will learn how we can use the MySQL DAY() function with proper syntax and good examples. Introduction of MySQL DAY() function This function in MySQL is used to...

2 minutes read.

MySQL TAN() Function

Basically, the TAN() function in MySQL is used to give back the tangent of a mentioned number.In any kind of right-angle triangle, the tangent of an angle is the length...

2 minutes read.

MySQL: Entity-Relationship Model

Entity-Relationship Model Entity-Relationship model or E R model is used to create a relationship between different attributes or entities. It describes the structure of the database with the help of the...

5 minutes read.

MySQL Stored Procedure

MySQL creates the "stored procedure" function to operate database information. You can use parameters, blocks, and statements to create a new procedure. The procedure requires a database table to use...

3 minutes read.

MySQL REVERSE() function

In this context, we will learn how we can use the MySQL REVERSE() function with proper syntax and good examples. Introduction of MySQL REVERSE() function This function could be used to reverse...

2 minutes read.

MySQL Prefix index

Prefix index This index query creates an index column in the string or character column. MySQL system can create multiple indexes in the table. It will create in a table as...

3 minutes read.

MySQL PERIOD_ADD() function

In this context, we will learn how we can use the MySQL PERIOD_ADD() function with proper syntax and good examples. Introduction of MySQL PERIOD_ADD() function In MySQL, PERIOD_ADD() function will help to...

2 minutes read.

MySQL MIN function

The MIN() function determines the minimum or lowest value of the data set. This function works on numerical data type values. If the table displays zero value, then the row...

4 minutes read.

MySQL LIKE() function

In this context, we will learn how we can use the MySQL LIKE() function with proper syntax and good examples. Introduction of MySQL LIKE() function The LIKE function is a logical function...

4 minutes read.

MySQL Truncate() Function

In this context, we will learn how we can use the MYSQL TRUNCATE function to truncate a number to a mentioned number of decimal places. Syntax of MySQL Truncate Function A number...

2 minutes read.

MySQL RIGHT JOIN

MySQL right join links two tables with each other. The left table column connects with the complete right side table. Each row of the right table tries to connect with...

4 minutes read.