Heim  >  Artikel  >  Datenbank  >  MySQL批量导入blob数据

MySQL批量导入blob数据

WBOY
WBOYOriginal
2016-06-07 16:41:381886Durchsuche

在MySQL中可以通过以下的方法导入 blob 类型的数据。 load data [local] infile '/tmp/a.txt' into table test fields terminated by '\t' (id, @hex_value) set value=UNHEX(@hex_value); 即,将二进制数据转成十六进制字符串,在导入的时候通过 UNHEX 转回

在MySQL中可以通过以下的方法导入blob类型的数据。

<code class="text language-text">load data [local] infile '/tmp/a.txt' into table test fields terminated by '\t' (id, @hex_value) set value=UNHEX(@hex_value);
</code>

即,将二进制数据转成十六进制字符串,在导入的时候通过UNHEX转回来。

local需要在启动MySQL命令行时带有参数--local-infile, 可以很方便的解决文件找不到的问题。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn