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

Verifique se uma linha existe ou não no postgresql

select
  case when exists (select true from table_name where table_column=?)
    then 'true'
    else 'false'
  end;

Mas seria melhor apenas retornar boolean em vez de string:
select exists (select true from table_name where table_column=?);