MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

MySQL ELT() function

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

Introduction of MySQL ELT() function

In the ELT function, the number field will state how many strings there will be.

ELT function in MySQL is used to return the string, which is at the index number specified in the argument list. In this function, there is a number field and a strings field.

Syntax of the MySQL ELT() function

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

ELT(I, string1, string2, string3, string4, …);

Parameters or arguments used in MySQL ELT() function:

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

I: It is an integer, and it is the index of the string to be retrieved.

string1, string2, string3: these are the List of strings from which we want to retrieve the index.

Returns:

It will return a string at the specified index. When there is no string at the specified index I, then it will return NULL.

Application used for ELT() function:

The ELT() 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 ELT() function:

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

Example-1 :

Here, we will Retrieve a string using ELT() function in MySQL.

Select ELT(4, 'Learning', 'SQL', 'at', 'Javatpoint', 'is', 'fun') As Res_Str;

Output :

Res_Str
Javatpoint
1 row in set (0.00 sec)

Example-2 :

Here, we will Retrieve a string using ELT() function in MySQL.

Select ELT(1, 'Learning', 'SQL', 'at', 'Javatpoint', 'is', 'fun')
As Res_Str;

Output :

Res_Str
Learning
1 row in set (0.00 sec)

Example-3 :

Here, we will Retrieve a string using ELT() function when there is no string at the specified index.

Select ELT(8, 'Learning', 'SQL', 'at', 'Javatpoint', 'is', 'fun')
As Res_Str;

Output :

Res_Str
NULL
1 row in set (0.00 sec)

Example-4 :

Let's Consider a database table called Workerlogin with the following records:

WorkIDNameDateLoginTime
1John2019-10-2509:20:38
2Marry2019-10-2509:21:05
3Jo2019-10-2509:24:35
4Kim2019-10-2509:25:24
5Ramesh2019-10-2509:27:16

The following query can be used to get the 2nd element from the List of strings specified by column records:

SELECT *,
ELT(2, Name, Date, LoginTime) AS ELT_Value
FROM Workerlogin;

This will produce a result similar to the following:

EmpIDNameDateLoginTimeELT_Value
1John2019-10-2509:20:382019-10-25
2Marry2019-10-2509:21:052019-10-25
3Jo2019-10-2509:24:352019-10-25
4Kim2019-10-2509:25:242019-10-25
5Ramesh2019-10-2509:27:162019-10-25
6Suresh2019-10-2509:28:192019-10-25

Application of MySQL ELT() function:

This function is used to return the string, which is at the index number specified in the argument list.

Summary:

In the above context, we have learned how we can use the ELT() function in MySQL used to return the string, which is at the index number specified in the argument list.