MySQL
 Computer >> コンピューター >  >> プログラミング >> MySQL

MySQL ORDER BYを使用して値で並べ替える方法は?


これには、ORDERBY句を使用します。まずテーブルを作成しましょう-

mysql> create table DemoTable
   (
   StudentId int
   );
Query OK, 0 rows affected (0.59 sec)

これで、挿入コマンド-

を使用してテーブルにいくつかのレコードを挿入できます。
mysql> insert into DemoTable values(100);
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values(60);
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable values(70);
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable values(45);
Query OK, 1 row affected (0.24 sec)
mysql> insert into DemoTable values(55);
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable values(78);
Query OK, 1 row affected (0.14 sec)

selectステートメントを使用してテーブルのすべてのレコードを表示する-

mysql> select *from DemoTable;

出力

+-----------+
| StudentId |
+-----------+
| 100       |
| 60        |
| 70        |
| 45        |
| 55        |
| 78        |
+-----------+
6 rows in set (0.00 sec)

以下は、ORDERBYを使用して値で並べ替えるクエリです。ここでは、ORDER BYで順序を設定しているため、最初に70を表示しています。残りのIDは昇順で表示されます-

mysql> select *from DemoTable order by StudentId=70 desc,StudentId asc;

出力

+-----------+
| StudentId |
+-----------+
| 70        |
| 45        |
| 55        |
| 60        |
| 78        |
| 100       |
+-----------+
6 rows in set (0.00 sec)

  1. MySQLを使用してソート順に集計関数を呼び出す

    このためには、ORDER BY句とともにGROUP_CONCAT()を使用します。まずテーブルを作成しましょう- mysql> create table DemoTable1588    -> (    -> StudentId int,    -> StudentFirstName varchar(20),    -> StudentMarks int    -> ); Query OK, 0 rows affected (0.49 sec) 挿入コマンド

  2. MySQLの最後に特定の値を並べ替える方法は?

    これには、ORDERBYを使用できます。テーブルを作成しましょう- mysql> create table demo57 −> ( −> id int not null auto_increment primary key, −> full_name varchar(20) −> ); Query OK, 0 rows affected (1.60 sec) 挿入コマンド-を使用して、いくつかのレコードをテーブルに挿入します。 mysql> insert into demo57(full_name) valu