Linux SQL statement Concise tutorial---functions

Source: Internet
Author: User

Since many of the data in the database are digital, one important use is to be able to perform calculations on these numbers, such as aggregating them together or finding their average. SQL has a function that provides some of this type. They are:

    • AVG Average
    • COUNT Count
    • MAX (maximum value)
    • MIN (Minimum value)
    • SUM Sum

The syntax for applying a function is:

Select "Function name" ("Field name")
From "table name";

For example, if we were to find the sum of the Sales fields from our demo table,

store_information Form

Store_name Sales Txn_date
Los Angeles 1500 05-jan-1999
San Diego 250 07-jan-1999
Los Angeles 300 08-jan-1999
Boston 700 08-jan-1999

We'll break in,

SELECT SUM (Sales) from Store_information;

Results:

SUM (Sales)
2750

2750 represents the sum of all Sales fields: 1500 + 250 + 300 + 700.

In addition to the use of functions, SQL can also do simple mathematical operations, such as add (+) and minus (-). For the text class data, SQL also has several functions of word processing, such as text connection (concatenation), text trimming (trim), and sub-string (substring ). Different databases have different syntax for these functions, so it is best to refer to the information of the database you are using to determine how these functions are used in that database.


Linux is measured as follows:



Reprint please specify: Xiao Liu

Linux SQL statement Concise tutorial---functions

Related Article

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.