在mysql中查看blob数据类型

发布于 2024-12-10 18:33:54 字数 249 浏览 0 评论 0原文

我从我们的合作者那里下载了一个文本格式的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牛↙奶布丁 2024-12-17 18:33:54

这就保证了你从mysql查看表数据时是无法直接看到blob数据的。但我认为当您单击特定行的编辑链接时,您可能会看到数据,但我对此不确定。如果您使用任何服务器脚本,那么您肯定会使用简单的选择查询轻松查看数据。喜欢

    SELECT COLUMN_NAME FROM TABLE_NAME 

   // REGARDLESS OF COLUMN_NAME DATA TYPE

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

    SELECT COLUMN_NAME FROM TABLE_NAME 

   // REGARDLESS OF COLUMN_NAME DATA TYPE
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文