当前位置:网站首页>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_kc
Running 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
边栏推荐
- 唯有学C不负众望 TOP3 Demo练习
- Fdog series (III): use Tencent cloud SMS interface to send SMS, write database, deploy to server, web finale.
- Idea resolving jar package conflicts
- Fdog series (V): use QT to imitate QQ to realize login interface to main interface, function chapter.
- ~76 sprite map
- ~82 style of table
- Thank you for your invitation. I'm in the work area. I just handed in the code. I'm an intern in the next ByteDance
- LeetCode 1637. The widest vertical area between two points without any point
- Shell_ 01_ data processing
- MySQL optimization notes
猜你喜欢
Many papers on ByteDance have been selected into CVPR 2021, and the selected dry goods are here
~74 JD top navigation bar exercise
Description of project structure configuration of idea
Idea resolving jar package conflicts
[unsolved]7-14 calculation diagram
亮相Google I/O,字节跳动是这样应用Flutter的
MySQL字符串函数
Yao BanZhi and his team came together, and the competition experts gathered together. What fairy programming competition is this?
koa中间件
Thank you for your invitation. I'm in the work area. I just handed in the code. I'm an intern in the next ByteDance
随机推荐
~82 style of table
Redis standalone startup
姚班智班齐上阵,竞赛高手聚一堂,这是什么神仙编程大赛?
High performance mysql (Third Edition) notes
逻辑运算指令
Full record of ByteDance technology newcomer training: a guide to the new growth of school recruitment
原型链继承
LeetCode 1984. Minimum difference in student scores
[unsolved] 7-15 shout mountain
LeetCode 1641. Count the number of Lexicographic vowel strings
字节跳动技术新人培训全记录:校招萌新成长指南
ByteDance open source Gan model compression framework, saving up to 97.8% of computing power - iccv 2021
When it comes to Google i/o, this is how ByteDance is applied to flutter
汇编语言段定义
MySQL字符串函数
7-8 likes (need to continue to improve)
DS18B20数字温度计系统设计
IDEA断点调试技巧,多张动图包教包会。
How to generate six digit verification code
LeetCode 1637. The widest vertical area between two points without any point