How can I directly view blobs in MySQL Workbench

前端 未结 12 1839
一整个雨季
一整个雨季 2021-01-30 19:31

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

12条回答
  •  后悔当初
    2021-01-30 20:12

    had the same problem, according to the MySQL documentation, you can select a Substring of a BLOB:

    SELECT id, SUBSTRING(comment,1,2000) FROM t
    

    HTH, glissi

提交回复
热议问题