select
case when exists (select true from table_name where table_column=?)
then 'true'
else 'false'
end;
Nhưng sẽ tốt hơn nếu chỉ trả về boolean thay vì chuỗi:
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;
Nhưng sẽ tốt hơn nếu chỉ trả về boolean thay vì chuỗi:
select exists (select true from table_name where table_column=?);