select
case when exists (select true from table_name where table_column=?)
then 'true'
else 'false'
end;
Aber es wäre besser, nur boolean statt string zurückzugeben:
select exists (select true from table_name where table_column=?);
select
case when exists (select true from table_name where table_column=?)
then 'true'
else 'false'
end;
Aber es wäre besser, nur boolean statt string zurückzugeben:
select exists (select true from table_name where table_column=?);