如何清除blob列oracle

时间:2016-07-04 21:29:27

标签: sql oracle

我在表格中有一个文件,我怎么可能设置空白"一些文件(在blob中)?

所有

1 个答案:

答案 0 :(得分:4)

使用EMPTY_BLOB()

$text1 = file_get_contents("first.txt");
$text2 = file_get_contents("second.txt");

preg_match_all('/.*?\R!\R*/s', $text1, $blocks1);
preg_match_all('/.*?\R!\R*/s', $text2, $blocks2);

$result = array_diff($blocks1[0], $blocks2[0]);

print_r($result);