Convert BLOB to text in sql
I have a field in my database table with datatype like BLOB
. How can I view the content as text/string
using a query SELECT
in SQL
. content MIMETYPE
is equal'text/xml charset=UTF8'
I tried with this, I'm not sure if it is correct with the syntax
SELECT
CAST((SELECT column FROM myTable WHERE ID='56')AS CHAR(10000) CHARACTER SET utf8)
and
SELECT
CONVERT(VARCHAR(max), CAST((SELECT column FROM myTable WHERE ID='56')
as binary)) from BIZDOCCONTENT
many thanks
+3
source to share