This article is tagged with:
Square in mysql
and mysql
square in mysql
SELECT POWER(4, 2);
/*
gives: 16
*/
square root in mysql
SELECT SQRT(64);
/*
gives: 8
*/