select
case when exists (select true from table_name where table_column=?)
then 'true'
else 'false'
end;
Maar het zou beter zijn om gewoon boolean terug te geven in plaats van string:
select exists (select true from table_name where table_column=?);