Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL ORDER BY x를 구현하는 방법 (x=col3 if col3!=null, else x=col2)?


이를 위해 ORDER BY IFNULL()을 사용할 수 있습니다. 먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
   -> (
   -> Name varchar(20),
   -> CountryName varchar(20)
   -> );
Query OK, 0 rows affected (0.61 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable values('Chris',NULL);
Query OK, 1 row affected (0.19 sec)
mysql> insert into DemoTable values('David','AUS');
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values(NULL,'UK');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable values(NULL,'AUS');
Query OK, 1 row affected (0.10 sec)
mysql> insert into DemoTable values(NULL,NULL);
Query OK, 1 row affected (0.11 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable;

이것은 다음과 같은 출력을 생성합니다 -

+-------+-------------+
| Name  | CountryName |
+-------+-------------+
| Chris | NULL        |
| David | AUS         |
| NULL  | UK          |
| NULL  | AUS         |
| NULL  | NULL        |
+-------+-------------+
5 rows in set (0.00 sec)

다음은 MySQL ORDER BY x를 구현하는 쿼리입니다. 여기서 (x=col3 if col3!=null, else x=col2) -

mysql> select *from DemoTable
   -> order by ifnull(Name,CountryName);
으로 주문

이것은 다음과 같은 출력을 생성합니다 -

+-------+-------------+
| Name  | CountryName |
+-------+-------------+
| NULL  | NULL        |
| NULL  | AUS         |
| Chris | NULL        |
| David | AUS         |
| NULL  | UK          |
+-------+-------------+
5 rows in set (0.00 sec)