SQL 쿼리 (값이 null이면 1 반환) 시스템에 설정된 환율 값을 반환하는 쿼리가 있습니다. 모든 주문에 환율 (currate.currentrate)이있는 것은 아니므로 null 값을 반환합니다. null 대신 1을 반환하도록 할 수 있습니까? if 문과 같은 것은 다음과 같습니다. if isnull(currate.currentrate) then 1 else currate.currentrate 다음은 내 쿼리입니다. 모든 도움에 감사드립니다! SELECT orderhed.ordernum, orderhed.orderdate, currrate.currencycode, currrate.currentrate FROM orderhed LEFT OUTER JOIN currrate ON orderhed.compa..