Pgloader - 如何在使用load csv时加载常量

时间:2016-03-04 16:04:02

标签: csv constants pgloader

我正在使用pgloader将文件加载到Tables中。 我需要加载常量(即csv不提供的字段),但我没有成功。

我的配置如下:

LOAD CSV  
  FROM './file.csv'
  HAVING FIELDS
  (a, b, c)
INTO postgresql:///pgloader?my_table
  TARGET COLUMNS
  (
    a
    ,b   
    ,c  
    ,Src
  )
  WITH
    skip header = 0,  
    fields optionally enclosed by '"',  
    fields escaped by double-quote,  
    fields terminated by ';'  
;

我需要将'SRC'静态值放入my_table.Src。

字段 你知道吗?

感谢。

的问候,

- 于连

0 个答案:

没有答案