Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从一个表中连接一些 5 个字段。但是该连接字段的结果集显示的是 BLOB。请。建议我如何解决这个问题。
在此先感谢,克里希纳!
使用带有字符名称的 CONVERT 或 CAST 函数来获取字符串,例如 -
SELECT CONVERT(column_name USING latin1) FROM table_name;
转换/转换功能。