1

Is there any tool/ query based mechanism for importing excel sheet data (xls/csv) to postgresql table?

Sajeev
  • 783
  • 3
  • 14
  • 46

1 Answers1

1

Try This

COPY Your_Table FROM 'D:/column.csv' WITH DELIMITER ';' CSV HEADER;
Vivek S.
  • 19,945
  • 7
  • 68
  • 85
Thush
  • 975
  • 3
  • 8
  • 11