SSMS
 sql >> Database >  >> Database Tools >> SSMS

Query SQL, se il valore è null, restituisce 1

Puoi usare un CASE dichiarazione.

SELECT 
    CASE WHEN currate.currentrate IS NULL THEN 1 ELSE currate.currentrate END
FROM ...