----- Mensaje original -----
De: "Jake" <[EMAIL PROTECTED]>
Para: <[EMAIL PROTECTED]>
Enviado: miércoles, 23 de agosto de 2000 21:56
Asunto: [GENERAL] Importing into Postgres from a csv file


> Does any one know if this is possible, and if so how?

Use copy command:

COPY table FROM 'data.csv'
    USING DELIMITERS ','
    WITH NULL AS 'null string'
  ;



Reply via email to