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 syntaxNull 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 fieldsMethod: 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:
Example: Total salary SummarizeThis 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:
|
<<: JS array deduplication details
>>: Modify the default scroll bar style in the front-end project (summary)
Use of AES encryption Data transmission encryptio...
Table of contents I. Overview 2. pt-archiver main...
This article example shares the specific code of ...
After installing MySQL, enter mysql -u root -p in...
vsftpd Overview vsftpd is the abbreviation of &qu...
The first article on data backup and restoration ...
First, I will give you the VMware 14 activation c...
If you want to change your host name, you can fol...
HTML onfocus Event Attributes Definition and Usag...
Google China has released a translation tool that ...
The previous articles introduced how to debug loc...
Table of contents Application Scenario Simply put...
Nowadays, tabs are widely used in web design, but...
In react, if you modify the state directly using ...
mysql create table sql statement Common SQL state...