当前位置:网站首页>Sort query
Sort query
2022-06-26 04:38:00 【Lili demon_】
Sort query
Sort query :SELECT Query list FROM surface WHERE filter ORDER BY Sort list (ASC/DESC)AEC/DESC = Ascending / Descending , The default is ascending ORDER BY Support Single field 、 Multiple fields 、 expression 、 function 、 Alias
Sort by a single field
#1. Query employee information , We need to rank wages from high to low
SELECT *
FROM employees
ORDER BY salary DESC
#2. Query department number is greater than or equal to 90 Employee information , Sort them by the time they are employed
SELECT *
FROM employees
WHERE department_id >= 90
ORDER BY hiredate ASC
By expression / Alias sort
#3. Display employee information and annual salary according to the level of annual salary 【 Sort by expression 】
SELECT *,salary*12*(1+IFNULL(commission_pct,0)) AS " Annual salary "
FROM employees
ORDER BY " Annual salary " DESC
Sort by function
#4. Display the employee's name and salary according to the length of the name 【 Sort by function 】
SELECT LENGTH(last_name) AS " bytes ",last_name,salary
FROM employees
ORDER BY LENGTH(last_name) DESC
Sort by multiple fields
#5. Query employee information , It is required to be in ascending order of salary first , In descending order by employee number 【 Sort by multiple fields 】
SELECT *
FROM employees
ORDER BY salary ASC,employee_id DESC
边栏推荐
- 1.24 learning summary
- Sixtool- source code of multi-functional and all in one generation hanging assistant
- Use shell script to analyze system CPU, memory and network throughput
- PHP has the problem of using strtotime to obtain time in months and months [original]
- 基础查询
- The select option in laravel admin contains a large amount of data
- [Qunhui] this suite requires you to start PgSQL adapter service
- A brain map to summarize the needs analysis (a supplement to the actual situation at work)
- "Eight hundred"
- Simple use of redis in laravel
猜你喜欢
![PHP design function getmaxstr to find the longest symmetric string in a string - [original]](/img/45/d8dae9e605a2f411683db7a2d40d0b.jpg)
PHP design function getmaxstr to find the longest symmetric string in a string - [original]

6、 Project practice --- identifying cats and dogs

Group by and order by are used together

How to carry out word-of-mouth marketing for enterprises' products and services? Can word of mouth marketing be done on behalf of others?

2021/11/6-burpsuit packet capturing and web page source code modification

Essential foundation of programming - Summary of written interview examination sites - computer network (1) overview

MySQL index details
![[H5 development] 02 take you to develop H5 list page ~ including query, reset and submission functions](/img/39/64df931d5ec54d7d19ae444fa372ba.jpg)
[H5 development] 02 take you to develop H5 list page ~ including query, reset and submission functions

Modify the number of Oracle connections

Microsoft prohibits Russian users from downloading and installing win10/11
随机推荐
Be a hard worker from today on
Yapi cross domain request plug-in installation
CTF serialization and deserialization
PHP installation SSH2 extension
Video label forbids downloading. The test is valid. Hide button. The test is valid at three points
LISP programming language
What should I do if I don't understand the precious metal indicators
Resolve PHP is not an internal or external command
Report on demand situation and development trend of China's OTC industry from 2022 to 2028
Mobile terminal pull-down loading pull-down loading data
Analysis report on development trend and market demand of global and Chinese molecular diagnostics industry from 2022 to 2028
Clean up photo SCR virus / iframekill injection removal /iframekill removal photo scr
0622-马棕榈跌9%
Thymeleaf data echo, single selection backfill, drop-down backfill, time frame backfill
numpy 数据输入输出
Advanced learning of MySQL (learning from Shang Silicon Valley teacher Zhou Yang)
Clickhouse stand alone installation
Notes on enterprise wechat development [original]
Introduction to markdown grammar
小程序中实现视频通话及互动直播功能