Binefş Aslan

Binefş Aslan

  • NA
  • 35
  • 808

to import excel file into mysql

Aug 8 2018 8:37 AM
Hey guys,
 
i want to import an excel sheet into mysql. there is no mistake in the code, but the excel can not been find. What i am doing wrong ?
  
this is my code:
 
create database if not exists ceribandin;
use ceribandin;
 
create table if not exists boats (
Begriffsbezeichnung INT NOT NULL PRIMARY KEY,
Wert VARCHAR (100),
Zustand VARCHAR (45),
Seriennummer INT,
Preis FLOAT);
Load data local infile "G\:PROJE, CERIBANDIN C#\ceribandinek.csv" into
table ceribandin.boats
fields terminated by ','
lines terminated by '\n'
ignore 1 lines
(Begriffsbezeichnung, Wert, Zustand, Seriennummer, Preis);

Answers (3)