当前位置:网站首页>MySQL digital function
MySQL digital function
2022-07-06 17:00:00 【My71】
The database used in the following , May refer to Create exercise database
Find the absolute value
function :ABS(number)
Instructions
SELECT ABS(10) AS Take the absolute value , ABS(-10) AS Take the absolute value ;Running results

averaging
function :AVG( Field )
demand : Calculation xs_kc The middle school number is 081101 Students' average grades in all courses .
Instructions
select Student number , Course no. ,avg( achievement ) as Average score from xs_kc where Student number ="081101"Running results

Sum up
function :SUM()
demand : Calculation xs_kc The grades of all students in the table and .
Instructions
select sum( achievement ) as Total score from xs_kcRunning results

Exponentiation
function :POW(x,y)
explain : return x Of y Power
Instructions
SELECT POW(2,3),POW(3,2);Running results

Seeking remainder
function :MOD(x,y)
explain : The return value is x Divide y The remainder of .
Instructions
SELECT MOD(10,3),MOD(10,5);Running results

to be divisible by
grammar :x DIV y
explain : return x Divide y The integer part of the result , No rounding .
Instructions
SELECT 10 DIV 3,5 DIV 2;Running results

Rounding up
function :CEIL()
explain : This function will return a minimum integer greater than or equal to this number .
Instructions
select CEIL(1.5);Running results

Rounding down
function :FLOOR()
explain : This function will return a minimum integer less than or equal to this number .
Instructions
select FLOOR(1.5);Running results

Round to the nearest whole
function :ROUND()
Instructions
SELECT ROUND(1.23),ROUND(1.57);Running results

After decimal point n position
function :TRUNCATE(x,y)
explain :x Is the decimal to be processed ,y It's the number of reserved digits , No rounding occurs .
Instructions
SELECT TRUNCATE(3.1415926,2),TRUNCATE(3.1415926,4);Running results

Return the maximum value in the field
function :MAX()
demand : find xs_kc The record with the highest score in the table .
demand
select Student number , Course no. ,max( achievement ) as Maximum score from xs_kc;Running results

Return the minimum value in the field
function :MIN()
demand : find xs_kc The record with the lowest score in the table .
Instructions
select Student number , Course no. ,min( achievement ) as Maximum score from xs_kc;Running results

Angle in radians
function :RADIANS()
Instructions
SELECT RADIANS(60),RADIANS(90);Running results

The angle of arc
function :DEGREES()
Instructions
SELECT DEGREES(1.0471975511965976),DEGREES(1.5707963267948966);Running results

边栏推荐
- LeetCode 1641. Count the number of Lexicographic vowel strings
- Ruoyi-Cloud 踩坑的BUG
- 8086 内存
- (multiple methods, need to continue to see) 7-11 go deep into the tiger's Den
- Redis standalone startup
- LeetCode 1020. Number of enclaves
- string. How to choose h and string and CString
- redux使用说明
- The difference between URI and URL
- LeetCode 1562. Find the latest group of size M
猜你喜欢
随机推荐
Solr standalone installation
LeetCode 1557. The minimum number of points that can reach all points
字节跳动开源GAN模型压缩框架,算力最高节省97.8%丨ICCV 2021
汇编语言基础知识
Shell_ 05_ operator
DOS 功能调用
Alibaba cloud server builds SVN version Library
原型链继承
Design of DS18B20 digital thermometer system
I'm "fixing movies" in ByteDance
服务器端渲染(SSR)和客户端渲染(CSR)的区别
LeetCode1556. Thousand separated number
Mongodb learning notes
When it comes to Google i/o, this is how ByteDance is applied to flutter
Fdog series (III): use Tencent cloud SMS interface to send SMS, write database, deploy to server, web finale.
Error: case label `15 'not within a switch statement
js垃圾回收机制和内存泄漏
Shell_ 06_ Judgment and circulation
Jedis
The "advertising maniacs" in this group of programmers turned Tiktok advertisements into ar games








