MySQL ATAN() and ATAN2() Functions – Finding the Arc Tangent of an Angle in MySQL

In this tutorial, we will study the MySQL ATAN() and ATAN2() functions. In high school, you must have studied the arc tangent of an angle in trigonometry. Since trigonometry is so widely used across a number of fields, MySQL provides us with the MySQL ATAN() and ATAN2() functions. The ATAN() function is used to find …

MySQL ATAN() and ATAN2() Functions – Finding the Arc Tangent of an Angle in MySQL Read More »

MySQL INNER JOIN

In this tutorial, we will study the MySQL INNER JOIN. First of all, let us start with what a join is. A join is used to combine two or more tables using a commonly related column between them. Suppose if you have an ‘OrderDetails’ table and a ‘Products’ table then you can create a join …

MySQL INNER JOIN Read More »