更新时间:2024-11-05 GMT+08:00
执行导出
导出操作语法:
执行数据导出语法:
1
|
INSERT INTO [foreign table 表名] SELECT * FROM [源表名]; |
执行导出数据示例
- 示例1:将表product_info_output的数据通过外表product_info_output_ext导出到数据文件中。
1
INSERT INTO product_info_output_ext SELECT * FROM product_info_output;
若出现以下类似信息,说明数据导出成功。INSERT 0 10
- 示例2:通过条件过滤(WHERE product_price>500),向数据文件中导出部分数据。
1
INSERT INTO product_info_output_ext SELECT * FROM product_info_output WHERE product_price>500;
对于特殊的数据类型如RAW类型,在导出之后是一个二进制文本,导入工具无法识别。需使用RAWTOHEX()函数将其转换为16进制文本导出。
父主题: 导出ORC数据到MRS