“Divisi oleh Zero Postgres” Kode Jawaban

Postgres: Kesalahan: Divisi dengan nol

SELECT 1.0 / NULLIF(column_that_may_be_zero, 0)
Obedient Osprey

Divisi oleh Zero Postgres

-- avoid division error in Postgres
value/NULLIF(col, 0)  -- if col == 0, NULL will be returned
value/COALESCE(NULLIF(col, 0), 1)  -- if col == 0, value will be returned 
experimental

Jawaban yang mirip dengan “Divisi oleh Zero Postgres”

Pertanyaan yang mirip dengan “Divisi oleh Zero Postgres”

Lebih banyak jawaban terkait untuk “Divisi oleh Zero Postgres” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya