use new_schema
create table userbehavior(
userID int,
itemID int,
categoryID int,
bahaviortype text,
timestamp int
);
load data infile "C:\Users\pc\Desktop\UserBehavior.csv"
into table userbehavior
fields terminated by ','
lines terminated by '\n';
error syntax near 'create table'
少了分号?