I'm using MySQL Workbench CE 5.2.30 CE / Rev 6790 . When execute the following statement:
SELECT OLD_PASSWORD("test")
I only get back a nice BLOB
icon, I need to left-click to select the cell, right-click and choose "Open Value in viewer" and select the "Text" tab.
Using the same with phpMyAdmin, I get directly back the value of the OLD_PASSWORD
call. It's just an example, but is there a way to directly see such results in the output?
HEX
function in a query:SELECT HEX(mybinarycolumn) FROM mytable
. (An alternative is to use phpMyAdmin instead of MySQL Workbench - there hex is shown by default.) – Upheld