
(SQL Example for Citizen Data Scientist & Business Analyst)
SQL Server Mathematical functions (SQRT, PI, SQUARE, ROUND, CEILING & FLOOR)
Mathematical functions are present in SQL server which can be used to perform mathematical calculations. Some commonly used mathematical functions are given below:
1. SQRT():
SQRT() function is the most commonly used function. It takes any numeric values and returns the square root value of that number.
Syntax:
SELECT SQRT(..value..)
Example:
2. PI(): There are calculations which require use of pi. Using pi() function, value of PI can be used anywhere in the query.
Syntax:
SELECT PI()
Example:
3. SQUARE(): SQUARE() function is used to find the square of any number.
Syntax:
SELECT SQUARE(..value..)
Example:
4. ROUND(): ROUND() function is used to round a value to the nearest specified decimal place.
Syntax:
SELECT ROUND(..value.., number_of_decimal_places)
Example:
5. CEILING() and FLOOR()
CEILING(): CEILING() function is used to find the next highest value (integer).
Syntax:
SELECT CEILING(..value..)
FLOOR(): FLOOR() function returns the next lowest value (integer).
Syntax:
SELECT FLOOR(..value..)
Example:
Learn to Code SQL Example – SQL Server Mathematical functions
Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.
Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners
Latest end-to-end Learn by Coding Projects (Jupyter Notebooks) in Python and R:
All Notebooks in One Bundle: Data Science Recipes and Examples in Python & R.
End-to-End Python Machine Learning Recipes & Examples.
End-to-End R Machine Learning Recipes & Examples.
Applied Statistics with R for Beginners and Business Professionals
Data Science and Machine Learning Projects in Python: Tabular Data Analytics
Data Science and Machine Learning Projects in R: Tabular Data Analytics
Python Machine Learning & Data Science Recipes: Learn by Coding
R Machine Learning & Data Science Recipes: Learn by Coding
Comparing Different Machine Learning Algorithms in Python for Classification (FREE)
There are 2000+ End-to-End Python & R Notebooks are available to build Professional Portfolio as a Data Scientist and/or Machine Learning Specialist. All Notebooks are only $29.95. We would like to request you to have a look at the website for FREE the end-to-end notebooks, and then decide whether you would like to purchase or not.