How to Calculate a Square in SQL Database: Standard SQL MySQL Oracle MS SQL Server PostgreSQL Operators: POWER Table of Contents Problem Example Solution 1: Use SQUARE function Solution 2: Use multiplication operator * Solution 3: Use POWER function Discussion Problem You want to find the square of a number in SQL. Example You want to compute the square of each number in the column number from the table data. number 3 1 0.5 0 -2 Solution 1: Use SQUARE function SELECT number, SQUARE(number) AS square FROM data; Solution 2: Use multiplication operator * SELECT number, number * number AS square FROM data; Solution 3: Use POWER function SELECT number, POWER(number, 2) AS square FROM data; The result is: numbersquare 39 11 0.50.25 00 -24 Discussion One way to compute the square of a number in SQL is to use the SQUARE() function. It takes a number as an argument and returns the squared number. The square of a number can also be computed as number * number, so another way is to simply use this expression; no additional function is needed. The third way to compute the square of a number is to use the POWER() function. This function takes a number and a power as arguments and returns the powered number. Here, you need to compute the square, so the power is 2. So, you have POWER(number, 2). Similarly, you can calculate any power of a number, e.g. the third power. SELECT POWER(number, 3) AS third_power FROM data; The result will be: numberthird_power 327 11 0.50.125 00 -2-8 Recommended courses: SQL Basics Standard SQL Functions Recommended articles: Standard SQL Functions Cheat Sheet 18 Useful Important SQL Functions to Learn ASAP The Best Way to Learn SQL: A Complete Guide for Beginners Where to Practice SQL SQL Numeric Functions See also: How to Round Numbers in SQL How to Multiply Two Columns in SQL How to Floor Numbers in SQL Subscribe to our newsletter Join our monthly newsletter to be notified about the latest posts. Email address How Do You Write a SELECT Statement in SQL? What Is a Foreign Key in SQL? Enumerate and Explain All the Basic Elements of an SQL Query