在mysql中查看blob数据类型
我从我们的合作者那里下载了一个文本格式的 mysql 表。我已经成功地将表转储到我的机器上的 mysql 数据库上的表中。该表是使用他们的 sql 文件创建的。所以他们有一些带有 blob
数据类型的字段,我无法在 mysql 中查看它们。当我使用 csv 打开相同的下载文本文件时,我可以看到带有 blob 数据类型的字段,其中包含诸如 BC,ABD,BDS
之类的字母。我不明白为什么我无法查看mysql中的字段。有人有想法吗?
I have downloaded a mysql table in text format from one our collaborator's. I have dumped the table into a table on mysql database on my machine successfully. The table was created using their sql file. SO they have some of the fields with blob
data-type, and I am unable to view them in mysql. when I opened the same downloaded text file with csv I could see the fields with blob data-type with letters like BC,ABD,BDS
. I do not understand why I am unable to view the fields in mysql. Anyone have ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就保证了你从mysql查看表数据时是无法直接看到blob数据的。但我认为当您单击特定行的编辑链接时,您可能会看到数据,但我对此不确定。如果您使用任何服务器脚本,那么您肯定会使用简单的选择查询轻松查看数据。喜欢
This is sure you can not see the blob data directly when you view the table data from mysql. But i think when you click the edit link of particular row you might see the data but i'm not sure about this. If you are using any server script then you definitely gonna see data without any hassle using simple select query. Like