当前位置:网站首页>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

边栏推荐
猜你喜欢

Fdog series (V): use QT to imitate QQ to realize login interface to main interface, function chapter.

I'm "fixing movies" in ByteDance

Shell_ 05_ operator

Shell_ 01_ data processing

J'ai traversé le chemin le plus fou, le circuit cérébral d'un programmeur de saut d'octets
![[unsolved]7-14 calculation diagram](/img/33/39802c0106f2bef4b9979e5ae12b83.jpg)
[unsolved]7-14 calculation diagram

汇编语言寻址方式

~87 animation

~76 sprite map

Record the error reason: terminate called after throwing an instance
随机推荐
Error: case label `15 'not within a switch statement
was unable to send heartbeat
~71 abbreviation attribute of font
Fdog series (V): use QT to imitate QQ to realize login interface to main interface, function chapter.
Alibaba cloud server docker installation mysql5.5
在 vi 编辑器中的命令模式下,删除当前光标处的字符使用 __ 命 令。
LeetCode 1638. Count the number of substrings with only one character difference
[graduation project] QT from introduction to practice: realize imitation of QQ communication, which is also the last blog post in school.
~76 sprite map
The daemon thread starts redis and modifies the configuration file
~68 Icon Font introduction
唯有学C不负众望 TOP5 S1E8|S1E9:字符和字符串&&算术运算符
Shell_ 03_ environment variable
唯有學C不負眾望 TOP5 S1E8|S1E9:字符和字符串&&算術運算符
8086 分段技术
I'm "fixing movies" in ByteDance
7-6 sum of combinatorial numbers
Ruoyi-Cloud 踩坑的BUG
面试集锦库
Which is more important for programming, practice or theory [there are some things recently, I don't have time to write an article, so I'll post an article on hydrology, and I'll fill in later]