select
case when exists (select true from table_name where table_column=?)
then 'true'
else 'false'
end;
ただし、文字列ではなくブール値を返す方がよいでしょう:
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;
ただし、文字列ではなくブール値を返す方がよいでしょう:
select exists (select true from table_name where table_column=?);
共有ライブラリのロード中にエラーが発生しました:libpq.so.5:共有オブジェクトファイルを開くことができません:そのようなファイルまたはディレクトリはありません pgbouncerでトランザクションプーリングを使用する利点は何ですか?