×

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 the bits in a number. 5 arguments are required to return a true result for this function. It converts Integer to Binary digits and returns "on" if the binary digit is 1 and "off" if the binary digit is 0.

Syntax of the MySQL EXPORT_SET() function

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

EXPORT_SET(bits, on, off, separator, number of bits)

Parameters or arguments used in MySQL EXPORT_SET() function:

There are five parameters accepted by the EXPORT_SET() function in MySQL, which are mentioned above and described as follows:

1. bits –

This is the integer number for which the result will be formatted in this function.

2. on –

It will return when the binary digit is 1.

3. off –

It will return off when the binary digit is 0.

4. separator –

Between returned values this separator will be placed in it .

5. number of bits –

The number of bits in which the result will come

Returns:

This function will return a string that will show the bits in the number.

Application used for EXPORT_SET() function:

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

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

Example-1 :

Here, we will see the Working of EXPORT_SET() function.

SELECT EXPORT_SET(10, 'On', 'Off', ':', 5) AS ExportSET;

Output:

ExportSET
Off: On : Off : On : Off
1 row in set (0.00 sec)

Example 2 :

Here, we will see the Working of EXPORT_SET() function by changing 2nd and 3rd arguments.

Here we will Use "Y" and "N" as the second and third arguments, respectively–

SELECT EXPORT_SET(11, 'Y', 'N', ', ', 4)
AS Export;

Output :

Export
Y, Y, N, Y
1 row in set (0.00 sec)

Here we will Use "1" and "0" as the second and third arguments, respectively –

SELECT EXPORT_SET(11, 1, 0, ', ', 4)
AS Export;

Output :

Export
1, 1, 0, 1
1 row in set (0.00 sec)

Example-3 :

Now, we will see the Working of the EXPORT_SET() function by changing the 4th argument.

In this example, we will use "-" as the fourth argument –

SELECT EXPORT_SET(10, 1, 0, '-', 4) AS ExportSET;

Output:

ExportSET
0-1-0-1
1 row in set (0.00 sec)

Here we will use "::" as the fourth argument –

SELECT EXPORT_SET(10, 1, 0, '::', 4)
AS Export;

Output:

Export
0::1::0::1
1 row in set (0.00 sec)

Example 4 :

Now, we will see the Working of the EXPORT_SET() function by changing the 5th argument.

Here we will Use 10 as the fifth argument –

SELECT EXPORT_SET(9, 'Y', 'N',' ', 10)
AS Export;

Output:

Export
Y N N Y N N N N N N
1 row in set (0.00 sec)

Here we will Use 20 as the fifth argument –

SELECT EXPORT_SET(9, 1, 0, ' ', 20)
AS Export;

Output:

Export
1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
1 row in set (0.00 sec)

Application of MySQL EXPORT_SET() function:

This function helps to return a string which will show the bits in the number.

Summary:

In the above context, we have learned how to use the EXPORT_SET() function in MySQL, which helps return a string that will show the bits in the number.


Related Topics

MySQL Index

An index is a widely used method to access table information quickly. MySQL requires an index for operating table data stored in rows and columns. It's an entry point of...

3 minutes read.

MySQL ISNULL function

This function is used to check the null value in table data. It returns the result in a Boolean form. If table data is null, then the output becomes 1....

2 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 Math Function

The math function operates numerical values and displays required number data. The math function finds out sin, cos, tan values. Here, you find out the absolute value, reminder, and logarithmic...

6 minutes read.

MySQL GREATEST function

This statement displays the greatest values of the table. The GREATEST function returns a null value when the table contains a null value. The GREATEST function needs a minimum of...

2 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 Constraints

MySQL Constraints Introduction The constraints help to restrict what values should be stored in a table. The constraints provide limitations of the columns or data. This function helps to insert data in...

20 minutes read.

MySQL POW() function

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

2 minutes read.

MySQL Vs MongoDB

What is MongoDB? MongoDB is a distributed, open-source, cross-platform document-based database which was created to scale and develop applications simply. It was created as a NoSQL database by MongoDB Inc. MongoDB gets...

6 minutes read.

MySQL FLOOR() function

In this context, we will learn how we can use the MySQL FLOOR() function with proper syntaxes and examples. Introduction of MySQL Floor() function: FLOOR() function in MySQL is used to return...

3 minutes read.

MySQL Command line client Basic Queries

MySQL – command line client Basic Queries There are many queries to work with the MySQL command-line client. Today, we will explore MySQL basic queries and their function. The MySQL query...

8 minutes read.

MySQL POWER() function

In this context, we will learn how we can use the MySQL POWER() function with proper syntax and good examples. Introduction of MySQL POWER() function The value of a number raised to...

3 minutes read.

MySQL DELETE JOIN

Sometimes join becomes complicated and unwanted. In such cases, we can delete the unwanted joins in the tables. You can delete inner join, left join, right join as per requirement....

3 minutes read.

MySQL Full text index

Full text index The full-text index in the table isused to search the full text of the data. This index assigns to the table using a "FULLTEXT" keyword. First, the table...

3 minutes read.

MySQL PI() function

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

2 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 Environmental Setup

The MySQL Environmental Setup MySQL is free, open-source, and cross-platform software, which can be downloaded from its official website. MySQL management system installs on Linux, macOS, and windows. MySQL requires a framework...

6 minutes read.

MySQL EQUI JOIN

An equijoin is an operation that combines multiple tables based on equality or matching column values in the associated tables. This operation links more than two tables based on a...

5 minutes read.

MySQL Create index

An index creation helps to make a row of the table unique. The index operates and handles table data quickly. MySQL index requires NOT NULL column constraint. The index column...

2 minutes read.

MySQL CEILING() function

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

2 minutes read.