TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Binefş Aslan
NA
35
821
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);
Reply
Answers (
3
)
SQL Create Multiple Column from Multiple Tables
Select from multiple tables and make difference