Ricardo Vaz wrote:
Hi,It is possible to copy data from text file (CSV) ignoring some columns of this text file?
(How come this was posted 3 times?) I don't think so but you could load it into a temporary table and then: insert into new_table select col1, col2 from temp_table; -- Postgresql & php tutorials http://www.designmagick.com/