导入EXCEL文件
功能描述
Vastbase支持使用COPY FROM语句导入EXCEL文件数据。
语法格式
COPY table_name [(column_name [,...])] FROM {' filename' } WITH (format ' xlsx' )
示例
1、创建测试表。
create table test_xlsx(id int,name text);
2、使用copy命令导入EXCEL文件数据到test_xlsx表。EXCEL文件可参考导出EXCEL文件进行导出。
copy test_xlsx from '/home/vastbase/test_xlsx.xlsx' with (format 'xlsx');
3、查询导入结果。
select * from test_xlsx;
返回结果为:
id | name
----+------
1 | aaa
| bbb
3 |
(3 行记录)