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.
MySQL 数据库中有字段类型为 BLOB 的记录。我将记录导出到 MySQL 工作台中的 JSON。生成的 JSON 文件包含以下格式的记录:
[{ 'ID : 1, 'field: 75945969799, 'BLOBField' : ? }]
BLOB 列的值是 JSON 格式(在 MySQL 中查看时)。我的目标是使 BLOB 值采用 JSON 格式而不是“?”。我该怎么做?谢谢。