encode
を使用できます 機能:
select encode(bytea_column, 'hex')
from image;
最初のバイトだけを表示したい場合は、left()
を使用してください。 その上で機能する:
select left(encode(bytea_column, 'hex'), 40)
from image;
マニュアルの詳細:
http:// www .postgresql.org / docs / current / static / Functions-binarystring.html