You are on page 1of 1

create database datosexcel;

use datosexcel;

create table prueba(


id int not null,
nombre varchar(30) not null,
edad int not null
);

load data local infile "/Users/ANDERSON/Desktop/Libro1.csv" into table prueba


fields terminated by ';'
lines terminated by '\n';

select * from prueba;

You might also like