MySQL Study Notes 8: function Query

Source: Internet
Author: User
Reference Table

 

Count () is used to count the number of records
 
MySQL> Select Count(*)FromScore; MySQL> Select Count(*)FromScoreWhereStu_id=901;

 

Sum () summation Function
MySQL> Select Sum(Grade)FromScore; MySQL> SelectID,Sum(Grade)FromScoreWhereStu_id=901;

 

AVG () averaging Function
MySQL> Select AVG(Grade)FromScoreWhereC_name='Computer'; MySQL> SelectC_name,AVG(Grade)FromScoreGroup ByC_name;

 

Max () returns the maximum value.
MySQL> SelectC_name,Max(Grade)FromScoreWhereC_name='English'; MySQL> SelectC_name,Max(Grade)FromScoreGroup ByC_name;
Min () Evaluate the minimum Function
MySQL> SelectC_name,Min(Grade)FromScoreWhereC_name='Chinese'; MySQL> SelectC_name,Min(Grade)FromScoreGroup ByC_name;

 

Concat concatenation Function
MySQL> SelectConcat (c_name,'(', Stu_id,')')-> FromScoreOrder ByStu_id;

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.