Detailed graphic explanation of mysql query control statements

Detailed graphic explanation of mysql query control statements

mysql query control statements

Field deduplication

**Keyword: distinct**
Syntax: select distinct field name from table name;

Case: Deduplication of departments

Select distinct dep from emp; 

ifnull syntax

Null plus any number equals null

Use ifnull to replace null values

Syntax: Select ifnull (field name that may be empty, if empty, replace it with something) from table name;

Example: View the sum of an employee's monthly salary and commission

Select sal+ifnull(comm,0) from emp;


Aliasing fields

Method: select field name as alias from table name

Select field name alias from table name

Sorting:

		Keywords: order by
		Syntax: Select field name from table name order by field name (used for sorting) asc (ascending)/desc (descending)

Aggregate functions:

MySQL provides aggregate functions for calculating fields.
Sum(): sums a whole column of data
Count(): count the number of nulls and do not count
Max(): Maximum value
Min(): minimum value
Avg(): average value
Round(): round the decimal places (..., how many places)

Example: Total salary

Summarize

This is the end of this article about MySQL query control statements. For more relevant MySQL query control statements, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • An article to understand the execution process of MySQL query statements
  • Detailed explanation of the execution process of MySQL query statements
  • Detailed explanation of the idea of ​​using Python sql statements to perform multi-condition fuzzy queries on mysql database
  • Example code for converting Mysql query result set into JSON data
  • Use Visual Studio Code to connect to the MySql database and query
  • MySQL query optimization: causes and solutions for slow queries
  • Optimizing the slow query of MySQL aggregate statistics data
  • Specific example of MySQL multi-table query
  • A complete example of mysql querying batch data from one table and inserting it into another table
  • Analyze how a SQL query statement is executed in MySQL

<<:  JS array deduplication details

>>:  Modify the default scroll bar style in the front-end project (summary)

Recommend

Detailed steps for using AES.js in Vue

Use of AES encryption Data transmission encryptio...

MySQL data archiving tool mysql_archiver detailed explanation

Table of contents I. Overview 2. pt-archiver main...

JavaScript to achieve digital clock effect

This article example shares the specific code of ...

Ubuntu View and modify mysql login name and password, install phpmyadmin

After installing MySQL, enter mysql -u root -p in...

The latest virtual machine VMware 14 installation tutorial

First, I will give you the VMware 14 activation c...

How to permanently change the host name in Linux

If you want to change your host name, you can fol...

Detailed explanation of HTML onfocus gain focus and onblur lose focus events

HTML onfocus Event Attributes Definition and Usag...

Google Translate Tool: Quickly implement multilingual websites

Google China has released a translation tool that ...

Solve MySQL deadlock routine by updating different indexes

The previous articles introduced how to debug loc...

Vue custom v-has instruction, steps for button permission judgment

Table of contents Application Scenario Simply put...

Two types of tab applications in web design

Nowadays, tabs are widely used in web design, but...

The use of setState in React and the use of synchronous and asynchronous

In react, if you modify the state directly using ...

Detailed summary of mysql sql statements to create tables

mysql create table sql statement Common SQL state...