PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Trasmetti una stringa in un numero, interpretando una stringa nulla o vuota come 0

I tipi di valori devono essere coerenti; unire la stringa vuota a uno 0 significa che non puoi quindi confrontarla con null nel nullif . Quindi uno di questi funziona:

# create table tests (orig varchar);
CREATE TABLE

# insert into tests (orig) values ('1'), (''), (NULL), ('0');
INSERT 0 4


# select orig, cast(coalesce(nullif(orig,''),'0') as float) as result from tests;
 orig | result 
------+--------
    1 |      1
      |      0
      |      0
    0 |      0
(4 rows)


# select orig, coalesce(cast(nullif(orig,'') as float),0) as result from tests;
 orig | result 
------+--------
 1    |      1
      |      0
      |      0
 0    |      0
(4 rows)