आप 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