PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Converta string para número, interpretando string nula ou vazia como 0


Os tipos de valores precisam ser consistentes; unir a string vazia para um 0 significa que você não pode compará-la com null no nullif . Então, qualquer um desses trabalhos:
# 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)