Basically, I am trying to import a csv file into a table in Google Cloud SQL database.. The query, I used to create a table is:
CREATE TABLE Mobike(
orderid INT(30),
bikeid INT(30),
userid INT(30),
start_time DATETIME,
start_location_x FLOAT(30,30),
start_location_y FLOAT(30,30),
end_time DATETIME,
end_location_x FLOAT(30,30),
end_location_y FLOAT(30,30),
track TEXT(65000));
Like Table, CSV file also contains the same columns having same data Types. Kindly, help me how I can solve this problem especially when I am doing it on Google cloud shell?? And how can I remove this error??