Workplace 6.3
Follow the high score, then use UNCOMPRESS()
(In short:
1. Go to "Edit"> "Settings"
2. Select SQL Editor
3. In the "Executing SQL" section, select the "Processing BINARY / VARBINARY" check box as a non-string character string
4. Restart the MySQL Workbench (you will not be prompted or informed about this requirement).
Then
SELECT SUBSTRING(UNCOMPRESS(<COLUMN_NAME>),1,2500) FROM <Table_name>;
or
SELECT CAST(UNCOMPRESS(<COLUMN_NAME>) AS CHAR) FROM <Table_name>;
If you just put UNCOMPRESS(<COLUMN_NAME>) , you can right-click on the block and click "Open value in editor."
Stephanie Oct 06 '16 at 2:48 2016-10-06 14:48
source share