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

Verificação mais rápida se a linha existe no PostgreSQL


Use a palavra-chave EXISTS para retornar TRUE/FALSE:
select exists(select 1 from contact where id=12)