I need to convert base64 string to bytea type. But when I Executed SQL statements by the pgAdminIII:
select decode("ygAAA", 'base64');
I got the following error message:
ERROR: syntax error at or near ")"
LINE 1: select decode('ygAAA', 'base64');
^
********** 错误 **********
ERROR: syntax error at or near ")"
SQL 状态: 42601
字符:59
My postgresql's version is 8.2.15. And I could use encode function. I googled it, but didn't find the solution. Can somebody help me? TKS!