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

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) values('John Smith');
Query OK, 1 row affected (0.24 sec)

mysql> insert into demo57(full_name) values('David Miller');
Query OK, 1 row affected (0.13 sec)

mysql> insert into demo57(full_name) values('Not Known');
Query OK, 1 row affected (0.13 sec)

mysql> insert into demo57(full_name) values('Chris Brown');
Query OK, 1 row affected (0.31 sec)

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

mysql> select *from demo57;

これにより、次の出力が生成されます-

+----+--------------+
| id | full_name    |
+----+--------------+
|  1 | John Smith   |
|  2 | David Miller |
|  3 | Not Known    |
|  4 | Chris Brown  |
+----+--------------+
4 rows in set (0.00 sec)

以下は、最後に特定の値を並べ替えるクエリです。

mysql> select *from demo57
−> order by(full_name="Not Known"),full_name desc;

これにより、次の出力が生成されます-

+----+--------------+
| id | full_name    |
+----+--------------+
|  1 | John Smith   |
|  2 | David Miller |
|  4 | Chris Brown  |
|  3 | Not Known    |
+----+--------------+
4 rows in set (0.00 sec)

  1. MySQLで文字列の最初に繰り返される値のみを置き換える方法

    これには、REGEXP_REPLACE()を使用できます。文字列が-だとしましょう This is my first MySQL query. This is the first tutorial. I am learning for the first time. 特定の単語の最初の出現のみを置き換える必要があります。たとえば、「最初」としましょう。出力は-である必要があります This is my second MySQL query. This is the first tutorial. I am learning for the first time. テーブルを作成しましょう-

  2. MySQLで特定の値を持つ列の数を数える方法は?

    以下は構文です- select sum(yourColumnName1+yourColumnName2+yourColumnName3...N) as `anyAliasName1`, sum(yourColumnName1 and yourColumnName2 and yourColumnName3….N) as anyAliasName from yourTableName; テーブルを作成しましょう- mysql> create table demo36 −> ( −> id int not null auto_incremen