You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
488 B
6 lines
488 B
CREATE TABLE trade01m(stocksymbol STRING, time INT, quantity INT, price INT)
|
|
load data infile "../tables/trade01m.csv" into table trade01m fields terminated by ','
|
|
CREATE TABLE trade1m(stocksymbol STRING, time INT, quantity INT, price INT)
|
|
load data infile "../tables/trade1m.csv" into table trade1m fields terminated by ','
|
|
CREATE TABLE trade10m(stocksymbol STRING, time INT, quantity INT, price INT)
|
|
load data infile "../tables/trade10m.csv" into table trade10m fields terminated by ',' |