×

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 of the opposite side divided by the length of the adjacent side. Similarly, the tangent of y can also be defined as the sine of y divided by the cosine of y, where y is the specified angle.

Syntax of the MySQL TAN() function:

The syntax of the MySQL TAN() function is given as follows:
TAN(num);

Parameters or arguments used in MySQL TAN() function:

Only one parameter is accepted by the TAN() function in MySQL, which is given as follows:

Number: It is the number which we want to calculate the tangent value of the number.

Returns: It will return the tangent of that mentioned number.

Application used for TAN() function:

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

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

Example 1:
Here, we will derive the tangent value of 1 using the TAN() function in MySQL.

SELECT TAN( 1) as TAN_ value ;

Output:

TAN_ value
1.5574077246549023
1 row in set (0.00 sec)

Example 2:

Here, we will derive the tangent value of 0 using the TAN() function in MySQL.

SELECT TAN(0) as TAN_ value ;

Output:

TAN_ value
0
1 row in set (0.00 sec)

Example 3:

Now we will derive the tangent value of -3 using the TAN() function in MySQL.

SELECT TAN(-3) as TAN_ value ;

Output:

TAN_ value
0.1425465430742778
1 row in set (0.00 sec)

Example 4:

Now we will derive the tangent value of 3 using the TAN() function in MySQL.

SELECT TAN(3) as TAN_ value ;

Output:

TAN_ value
-0.1425465430742778
1 row in set (0.00 sec)

Example 5:

Now we will derive the tangent value of 0.75 using the TAN() function in MySQL.

SELECT TAN(0.75) as TAN_ value ;

Output:

TAN_ value
0.9315964599440725
1 row in set (0.00 sec)

Example 6:

Now we will derive the tangent value of 8 using the TAN() function in MySQL.

SELECT TAN(8) as TAN_ value ;

Output:

TAN_ value
-6.799711455220379
1 row in set (0.00 sec)

Example 7:

You can also pass the pi() function as a value to the TAN() function, as shown below:

SELECT TAN(pi()) as TAN_ value;

Output:

TAN_ value
-1.2246467991473532e-16
1 row in set (0.00 sec)

Example 8:

Following is another example of the TAN() function in MySQL in which we will derive the tangent value of -16.

SELECT TAN(-16) as TAN_ value ;

Output:

TAN_ value
-0.3006322420239034
1 row in set (0.00 sec)

Application of MySQL TAN() function:

This function is used to return the tangent of a mentioned number.

Summary:

In the above context, we have learned how we can use the TAN () function in MySQL to calculate the tangent value of the specified number.


Related Topics

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 Table Query

MySQL table query A database stored a lot of data and divided them into different relations known as tables. Each database can contain more than one table. These tables are created...

7 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 Advance function

The advance function operates numerical values, string values, and data types.  The advance function converts, displays, and compares given values as per requirement. Here, you find out database, table, and...

4 minutes read.

MySQL LENGTH() Function

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

2 minutes read.

MySQL LN() function

In this context, we will learn how we can use the MySQL LN() function with proper syntax and good examples. Introduction of MySQL LN() function For evaluation of the natural logarithm of...

2 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 vs Oracle

What is MySQL? The open-source MySQL relational database management system is a vital software component for web-based applications. As the data is saved and sent over the internet, databases and related...

6 minutes read.

MySQL Data Types

Introduction of the Data types In the data file, we have several information such as names, numbers, marks, and other information. This information specifies categories such as numbers, characters, and decimal...

8 minutes read.

MySQL Invisible Index

Invisible Index MySQL index decides an option to the availability of the index for the query optimizer. This index shows the visible and invisible options to displays the index column in...

3 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.

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 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 Triggers

MySQL trigger is a function of the stored procedure to respond to the system program. This function responds and runs any data table event automatically. You can use it for...

5 minutes read.

MySQL INSTR() Function

In this context, we will learn how we can use the MySQL INSTR() function with proper syntax and good examples. Introduction of MySQL INSTR() function This function in MySQL returns the location...

4 minutes read.

MySQL RIGHT() Function

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

3 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 NOW() function

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

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