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

MySQL出力を昇順で並べ替えるにはどうすればよいですか?


結果セットを昇順で並べ替える場合は、ORDER BY句でASC(ASCENDINGの短縮形)キーワードを指定する必要があります。

構文
Select column1, column2,…,columN From table_name ORDER BY column1[column2,…] ASC;

次の例では、結果セットを「名前」列で昇順で並べ替えています。

mysql> Select * from Student ORDER BY Name ASC;
+------+---------+---------+-----------+
| Id   | Name    | Address | Subject   |
+------+---------+---------+-----------+
| 2    | Aarav   | Mumbai  | History   |
| 1    | Gaurav  | Delhi   | Computers |
| 15   | Harshit | Delhi   | Commerce  |
| 17   | Raman   | Shimla  | Computers |
+------+---------+---------+-----------+
4 rows in set (0.00 sec)

  1. ORDER BYフィールドを使用して、単一のMySQLフィールドでIDで並べ替える方法は?

    これには、ORDERBYFIELDを使用できます。まずテーブルを作成しましょう- mysql> create table DemoTable    -> (    -> Id int,    -> Name varchar(20)    -> ); Query OK, 0 rows affected (1.78 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql> insert into DemoTable values(101,'

  2. C#で配列を昇順で並べ替えるにはどうすればよいですか?

    まず、ソートされていない配列を設定します。 int[] list = {98, 23, 97, 36, 77}; Sort()メソッドを使用して配列を並べ替えます。 Array.Sort(list); 次のコードを実行して、配列を昇順で並べ替えることができます。 例 using System; namespace Demo {    public class MyApplication {       public static void Main(string[] args) {         &