1. Description of functions in MySQL"Concept": Similar to the methods in Java and Python, a set of logical statements are encapsulated in the method body and the method name is exposed externally; "Benefits": ⅠHide implementation details; ⅡImprove code reusability; "Call": select function name (actual parameter list) [from table]; "Features": Ⅰ What is it called (function name); Ⅱ What does it do (function function); "Classification": Ⅰ single-row function; Ⅱ grouping function; "What is a single-row function:": It acts on each row of records in the table, and one result is obtained for each record; "What is an aggregate function:": Acts on one or more rows and ultimately returns a result; 2. Single-line function classificationCharacter functions; Mathematical functions; Date functions; Other functions: Process control functions; 3. Character functions 1) For the For The operation is as follows: 2) The operation is as follows: 3) The operation is as follows: 4) The operation is as follows: 5) The operation is as follows: 6) The operation is as follows: 7) The operation is as follows: 8) The operation is as follows: 9) The operation is as follows: 10) The operation is as follows: 4. Mathematical functions 1) The operation is as follows: 2) The operation is as follows: 3) The operation is as follows: 4) The understanding is as follows: "Refer to the example picture below and understand the following text" 2) If D is 0, the decimal part is discarded directly. 3) D is a negative number, and the operation is on the integer part to the left of the decimal point. Example image: The operation is as follows: 5) The operation is as follows: 5. Date and time functionsThe meaning of date: refers to the year, month and day we often say. The meaning of time: refers to the hours, minutes and seconds we often say. Before explaining the following functions, let us first add a piece of knowledge: what do different time format characters mean? 1) The operation is as follows: 2) The operation is as follows: 3) The operation is as follows: 4) Get the year, month, day, hour, minute and second of the date and time; Get the year: year(); Get the month: month(); Get the day: day(); Get the hour: hour(); Get the minute: minute(); Get the seconds: second(); 5) The operation is as follows: 6) The operation is as follows: 7) The operation is as follows: 8) The operation is as follows: 9) The operation is as follows: 10) The operation is as follows: 11) The operation is as follows: 12) The unit parameter is the unit in which the result of (start_date, end_date) is determined, expressed as an integer. The following are valid units: year: year month: month day: day hour: hour minute second: seconds microsecond: microsecond week: week number quarter: quarter YEAR: year The operation is as follows: 6. Other commonly used system functions7. Flow control function 1) 2) 3) Three usages of There are three usages of case … when. I believe my summary is quite comprehensive. I hope everyone will study these uses carefully, they are all very useful. Equivalence judgment: similar to the effect of switch case in Java; Interval judgment: similar to the effect of if-elif-else in Python; case ... when is used in conjunction with aggregate functions; ① case ... when is used as the syntax format for equal value judgment;
The operation is as follows: ② case … when is used as the syntax format for interval judgment;
The operation is as follows: ③ Combination of case…when and aggregate functions Using the original table above, complete the following questions: -- 18. Check the highest score, lowest score and average score of each subject and display them in the following format: The operation is as follows: select sc.c,cname, max(score) is the highest score, min(score) is the lowest score, avg(score) is the average score, sum(case when score>60 then 1 else 0 end)/count(*) pass rate, sum(case when score>=70 and score<80 then 1 else 0 end)/count(*) medium rate, sum(case when score>=80 and score<90 then 1 else 0 end)/count(*) Good rate, sum(case when score>=90 then 1 else 0 end)/count(*) excellent rate from sc left join course on sc.c = course.c group by sc.c; The results are as follows: 8. Aggregate Functions1) Functions and classification of aggregation functions;① The function of aggregate function; Used for statistical purposes, also known as aggregate function, statistical function or group function. ② Classification of aggregation functions; sum for summation avg for average value max for maximum value min for minimum value count for calculation number 2) Simple use of aggregate functions3) What data types are supported by the parameters passed into the five aggregate functions?MySQL is not a strongly typed programming language. In other words, some statements may not report errors when they are executed, but the execution results are meaningless, so we also think they are incorrect. ① Test data; "Create table statement" create table test( id int primary key auto_increment, name varchar(20) not null, sal int, birth date)charset=utf8; "Insert Data" insert into test(name,sal,birth) values ("Zoo",6500,'1993.3.20'), ("Hobby",4000,'1997.6.10'), ("Aline",5500,'2000.5.1'), ("Bob",10000,'2008.10.1'); ② sum() function and avg() function: it makes sense to pass in integer/decimal types; The conclusion is as follows: The sum() function and avg() function do not make much sense for calculations of string type and date/time type. Therefore, we only use the sum() function and avg() function to sum decimal types and integer types. ③ max() function and min() function: It is more meaningful to pass in integer/decimal type, date/time type; The conclusion is as follows: What is passed into max() and min() is "integer/decimal type", and ④ count() function: You can pass in any data type, but be careful when encountering null; The conclusion is as follows: The count() function can pass in any data type to count rows. Summarize:
In fact, all grouping functions ignore null values, but the count() function above needs special attention when encountering null values. ⑤ Pay special attention to the count() function when it encounters a null value; The conclusion is as follows: For the average value of avg(sal), (6500+4000+5500+10000)/4=6500. For the following sum()/count(*) to calculate the average, (6500+4000+5500+10000)/5=5200. Take the above example carefully. Sometimes, although someone's score is recorded as null, you still have 5 people, so you have to consider how to use the appropriate function to achieve the result you want. ⑥ What do count(1) and count(0) mean? Whether it is sum(1), sum(0), count(1), count(0), avg(1), avg(0), the principle is the same, which is equivalent to adding a new column to the original table. Secondly, we know that where is followed by [logical value]. When using where 1 and where 0, the principle is still the same, which is equivalent to adding a new column to the original table. We just need to remember that in MySQL: "non-0 is true, 0 is false". That is to say, you can replace all the 1s below with any non-zero numbers. The schematic diagram is as follows: Test it out: ⑦ The efficiency of count(*) counting; Under the MYISAM storage engine, count(*) is highly efficient. Under the INNODB storage engine, count(*) and count(1) are almost as efficient, but slightly more efficient than count(field). To sum up: count(*) is preferred. 4) The use of aggregate functions and group by is "most important";We will discuss this knowledge point in the following knowledge points. Here we only need to remember one sentence: when the group by function is used in the SQL statement, the field after the select must be the field after the group by + the use of the aggregate function. The above is the details of a very practical MySQL function comprehensive summary with detailed example analysis. For more information about MySQL functions, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Introduction to HTML for front-end developers
>>: Detailed explanation of simple snow effect example using JS
I summarized the previous notes on installing MyS...
MySql index detailed introduction and correct use...
1. Command Introduction The usermod (user modify)...
Table of contents 1. What is front-end state mana...
1 Introduction to HTML 1.1 First experience with ...
This article describes how to add or expand a dis...
Database migration is a problem we often encounte...
Table of contents Impact of full table scan on th...
<br />When thoughts were divided into East a...
count script #!/bin/sh numOfArgs=$# if [ $numOfAr...
MySQL 5.5 installation and configuration method g...
Table of contents 1. New usage of watch 1.1. Watc...
XHTML defines three document type declarations. T...
Table of contents Ideas Host Configuration Modify...
I recently encountered a problem. The emoticons o...