Pesquisa de site

Ordem MySQL por caso?


Para isso, use ordenar por nullif(). Vamos primeiro criar uma tabela:

mysql> create table DemoTable672(
   CustomerId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   CustomerName varchar(100),
   CustomerAmount int
);
Query OK, 0 rows affected (0.81 sec)

Insira alguns registros na tabela usando o comando insert:

mysql> insert into DemoTable672(CustomerName,CustomerAmount) values('Chris',560);
Query OK, 1 row affected (0.51 sec)
mysql> insert into DemoTable672(CustomerName,CustomerAmount) values('Robert',null);
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable672(CustomerName,CustomerAmount) values('',450);
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable672(CustomerName,CustomerAmount) values('David',456);
Query OK, 1 row affected (0.11 sec)
mysql> insert into DemoTable672(CustomerName,CustomerAmount) values('Carol',786);
Query OK, 1 row affected (0.14 sec)

Exiba todos os registros da tabela usando a instrução select:

mysql> select *from DemoTable672;

Isso produzirá a seguinte saída:

+------------+--------------+----------------+
| CustomerId | CustomerName | CustomerAmount |
+------------+--------------+----------------+
| 1          | Chris       | 560             |
| 2          | Robert      | NULL            |
| 3          |             | 450             |
| 4          | David       | 456             |
| 5          | Carol       | 786             |
+------------+--------------+----------------+
5 rows in set (0.00 sec)

A seguir está como você pode executar a ordem do MySQL por caso. Aqui, também usamos FIELD() para pesquisa que não diferencia maiúsculas de minúsculas:

mysql> select *from DemoTable672 ORDER BY NULLIF(CustomerName,'') IS NULL, FIELD(CustomerAmount,560,786,450,456);

Isso produzirá a seguinte saída:

+------------+--------------+----------------+
| CustomerId | CustomerName | CustomerAmount |
+------------+--------------+----------------+
| 2          | Robert       | NULL           |
| 1          | Chris        | 560            |
| 5          | Carol        | 786            |
| 4          | David        | 456            |
| 3          |              | 450            |
+------------+--------------+----------------+
5 rows in set (0.04 sec)

Artigos relacionados: