MySQL GROUP BY句の行を並べ替える、または選択する方法は?
まずテーブルを作成しましょう-
mysql> create table DemoTable1572 -> ( -> StudentId int, -> StudentMarks int, -> StudentName varchar(20) -> ); Query OK, 0 rows affected (0.56 sec)
挿入コマンド-
を使用して、テーブルにいくつかのレコードを挿入しますmysql> insert into DemoTable1572 values(1,79,'Sam'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable1572 values(2,89,'Chris'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable1572 values(3,98,'David'); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable1572 values(4,79,'Bob'); Query OK, 1 row affected (0.10 sec)
selectステートメントを使用してテーブルのすべてのレコードを表示する-
mysql> select * from DemoTable1572;
これにより、次の出力が生成されます-
+-----------+--------------+-------------+ | StudentId | StudentMarks | StudentName | +-----------+--------------+-------------+ | 1 | 79 | Sam | | 2 | 89 | Chris | | 3 | 98 | David | | 4 | 79 | Bob | +-----------+--------------+-------------+ 4 rows in set (0.00 sec)
これは、MySQLGROUPBY句の行を並べ替えまたは選択するためのクエリです-
mysql> select * from DemoTable1572 -> where StudentId in (select min(StudentId) from DemoTable1572 group by StudentMarks);
これにより、次の出力が生成されます-
+-----------+--------------+-------------+ | StudentId | StudentMarks | StudentName | +-----------+--------------+-------------+ | 1 | 79 | Sam | | 2 | 89 | Chris | | 3 | 98 | David | +-----------+--------------+-------------+ 3 rows in set (0.10 sec)
-
単一のMySQLクエリでGROUPBYを使用してFIELDで順序付けする方法は?
このために、最初にテーブルを作成しましょう- mysql> create table DemoTable ( Message text ); Query OK, 0 rows affected (1.15 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql> insert into DemoTable values('Good'); Query OK, 1 row affected (0.43 sec) mysql> insert into DemoTable values('Bye
-
MySQLでグループ化されたフィールドで並べ替える方法は?
グループ化されたフィールドをORDERBYするには、IN()とともにORDERBYCASEを使用します。 CASEはさまざまな条件を評価しますが、ORDERBYは値を昇順または降順で並べ替えます。 MySQL IN()は、一致するものを見つけるために使用されます。 まずテーブルを作成しましょう- mysql> create table DemoTable ( Value varchar(40) ); Query OK, 0 rows affected (0.52 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql>