반응형
Customers 테이블
PostalCode가 NULL인 레코드를 Country명으로 정렬하여 조회
SELECT *
FROM Customers
WHERE PostalCode is NULL
ORDER BY Country ASC;
PostalCode가 NULL이 아닌 레코드를 Country명으로 정렬하여 조회
SELECT *
FROM Customers
WHERE PostalCode is NOT NULL
ORDER BY Country ASC;
Customer Name을 NAME으로, City가 NULL이라면 “No City”를 출력하고 CustomerID로 정렬하여 조회
SELECT CustomerName as Name, IFNULL(City, "No City")
FROM Customers
ORDER BY CustomerID
반응형
'📂 Database' 카테고리의 다른 글
[SQL/MySQL] SELECT 데이터 선택하기 (0) | 2022.04.04 |
---|