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.
12 lines
241 B
12 lines
241 B
3 years ago
|
CREATE TABLE sale(Month INT, sales INT)
|
||
|
|
||
|
LOAD DATA INFILE "moving_avg.csv"
|
||
|
INTO TABLE sale
|
||
|
FIELDS TERMINATED BY "\t"
|
||
|
|
||
|
SELECT Month,avgs(3,sales)
|
||
|
FROM sale
|
||
|
ASSUMING ASC Month
|
||
|
INTO OUTFILE "moving_avg_output.csv"
|
||
|
FIELDS TERMINATED BY ","
|