How to prevent Squirrel SQL to show concat()
of int data types as varbinary in hex format instead of plain text?
For example, SELECT CONCAT(1,2)
shows the hex notation 3132
instead of "12"
...
Looking at the MetaData result tab shows that the resulting column type is VARBINARY
. How can I force it to be plain text?