SQL SQUARE()

SQUARE function is to find the square of the values passed in it.


SYNTAX :
square(x)

database table 'scanf'

area

angle

num

36.7844596
212.25430-78
121.00145-45
141.698185-96

Example 1 :with Table
SELECT square(angle) as Power from scanf ;

Example 2 : without Table
SELECT square(34);