skip to Main Content

PostgreSQL EXISTS and null value

For example use Test table with only positive id value. Query select 1 from public.Test where id = 0 return empty result. But when I use this query: select case when exists(select 1 from public.Test where id = 0) then…

VIEW QUESTION
Back To Top
Search