I'm using Xampp as a server and MySqlWorkbench as a database, how can I import a csv file to make various experiments (file size, upload time, etc.)?
I'm using Xampp as a server and MySqlWorkbench as a database, how can I import a csv file to make various experiments (file size, upload time, etc.)?
There are many ways you can do this, but regardless of how you do it, you first have to create the table with the given structure (columns and fields) so that you can use it with the CSV file or whatever you want to import .
I think this tutorial can help you Importing cvs to mysql
MySQL has a command to import a CSV file directly into a table (and it looks very fast).
LOAD DATA INFILE 'arquivo' INTO TABLE 'tabela'