MySQL 排序語句

2021-08-09 04:45:30 字數 655 閱讀 9900

如果需要對讀取的資料進行排序,就可以使用 mysql 的 

order by

子句來設定你想按哪個欄位哪種方式來進行排序,再返回搜尋結果。

以下是 sql select 語句使用 order by 子句將查詢資料排序後再返回資料:

select field1

,field2

,...

fieldn from table_name1

,table_name2

...order by field1,[

field2

...]

[asc

[desc

]]

1、可以使用任何欄位來作為排序的條件,從而返回排序後的查詢結果。

2、可以設定多個欄位來排序

3、可以使用 asc 或 desc 關鍵字來設定查詢結果是按公升序或降序排列。 預設情況下,是按公升序排列

4、可以新增 where...like 子句來設定條件

例:select * from student order by age;

將表中資料按照年齡從小到大排序

又例:select * from student where age>50 order by age;

將表中年齡大於50歲的按照年齡從小到大排序

mysql支援語句 mysql語句

delete 刪除資料表中的行 可以刪除某一行,也可以在不刪除資料表的情況下刪除所有行 刪除某一行 delete from 資料表名稱 where 列名稱 值 刪除所有行 delete from 資料表名稱 drop 刪除資料表或資料庫,或刪除資料表字段。刪除資料庫 drop database 資料...

常用mysql語句 常用MySql語句

新建資料表 drop table if exists ga game way create table ga game way id int 11 unsigned not null auto increment comment id primary key id using btree,主鍵 un...

mysql基本語句 mysql基本語句

mysql關係型資料庫rds中的老大哥,增刪改查是mysql入門的基礎 增刪改查語句 增刪改查的語句命令為 增 insert 刪 delete 改 update 查 select或者show 庫操作建立資料庫 create database shujukuba 建立帶字符集的資料庫 create d...