1

Is there a way to insert data into InfoBright tables using LOAD DATA style like from file

LOAD DATA INFILE '/usr/tmp/file2.txt' 
INTO TABLE test_table1 
FIELDS TERMINATED BY ',' ENCLOSED BY '"';

mysql> select * from test_table1; 
+------+-------------------+-----------+ 
| id | textfield | numerical | 
+------+-------------------+-----------+ 
| 1 | one, two or three | 1234 | 
| 1 | one, two or three | 1234 | 
+------+-------------------+-----------+ 
2 rows in set (0.00 sec)
    
4

1 回答 1

0

是的,您可以(编辑:但仅适用于外部数据)

事实上,如果您使用 Infobright 的 Community Edition,这是将数据导入 Infobright 表的唯一方法之一。Infobright Community Edition 不支持允许INSERT命令的 DML。

Infobright 实际上在他们的网站和论坛上有很多很好的文档和示例。

编辑:根据您的评论进行更新(再次假设社区版)

如果您想从 InfoBright 中的一个表中获取数据到另一个表中,您需要从外部数据源重新导入它。

于 2014-06-25T21:17:45.493 回答