s_orders의 배송 전에 취소된 주문을 검색하세요.
즉, 배송일(shippedDate)에 값이 없고, 주문 상태(status)가 'Cancelled'인 주문을 검색합니다.
출력 컬럼은 주문의 orderNo, orderDate, requiredDate, shippedDate, status 순으로 합니다.
SQL문을 실행하면 다음과 같이 결과가 나와야 합니다.
SELECT orderNo, orderDate, requiredDate, shippedDate, status
FROM s_orders
WHERE shippedDate IS NULL AND status = 'Cancelled';