ORDER BY 절과 함께 IFNULL을 사용할 수 있습니다. 구문은 다음과 같습니다 -
SELECT *FROM yourTableName ORDER BY IFNULL(yourColumnName1,yourColumnName2);
위의 구문을 이해하기 위해 테이블을 생성해 보겠습니다. 테이블을 생성하는 쿼리는 다음과 같습니다 -
mysql> create table IfNullDemo -> ( -> Id int NOT NULL AUTO_INCREMENT, -> ProductName varchar(10), -> ProductWholePrice float, -> ProductRetailPrice float, -> PRIMARY KEY(Id) -> ); Query OK, 0 rows affected (1.19 sec)
삽입 명령을 사용하여 테이블에 일부 레코드를 삽입하십시오. 쿼리는 다음과 같습니다 -
mysql> insert into IfNullDemo(ProductName,ProductWholePrice,ProductRetailPrice) values('Product-1',99.50,150.50); Query OK, 1 row affected (0.21 sec) mysql> insert into IfNullDemo(ProductName,ProductWholePrice,ProductRetailPrice) values('Product-2',NULL,76.56); Query OK, 1 row affected (0.18 sec) mysql> insert into IfNullDemo(ProductName,ProductWholePrice,ProductRetailPrice) values('Product-3',105.40,NULL); Query OK, 1 row affected (0.20 sec) mysql> insert into IfNullDemo(ProductName,ProductWholePrice,ProductRetailPrice) values('Product-4',NULL,NULL); Query OK, 1 row affected (0.18 sec) mysql> insert into IfNullDemo(ProductName,ProductWholePrice,ProductRetailPrice) values('Product-5',209.90,400.50); Query OK, 1 row affected (0.14 sec)
select 문을 사용하여 테이블의 모든 레코드를 표시합니다. 쿼리는 다음과 같습니다 -
mysql> select *from IfNullDemo;
다음은 출력입니다 -
+----+-------------+-------------------+--------------------+ | Id | ProductName | ProductWholePrice | ProductRetailPrice | +----+-------------+-------------------+--------------------+ | 1 | Product-1 | 99.5 | 150.5 | | 2 | Product-2 | NULL | 76.56 | | 3 | Product-3 | 105.4 | NULL | | 4 | Product-4 | NULL | NULL | | 5 | Product-5 | 209.9 | 400.5 | +----+-------------+-------------------+--------------------+ 5 rows in set (0.02 sec)
다음은 null −
인 경우 정렬할 쿼리입니다.mysql> select *from IfNullDemo order by ifnull(ProductWholePrice,ProductRetailPrice);
다음은 출력입니다 -
+----+-------------+-------------------+--------------------+ | Id | ProductName | ProductWholePrice | ProductRetailPrice | +----+-------------+-------------------+--------------------+ | 4 | Product-4 | NULL | NULL | | 2 | Product-2 | NULL | 76.56 | | 1 | Product-1 | 99.5 | 150.5 | | 3 | Product-3 | 105.4 | NULL | | 5 | Product-5 | 209.9 | 400.5 | +----+-------------+-------------------+--------------------+ 5 rows in set (0.00 sec)