I have a CSV, which is a partial projection of the origin table. I have the same table structure in my database.
I would like to import only those columns into my database, given that there are no additional NOT NULL restrictions (I explicitly disabled some of them). I do not know how to import them.
I tried the following: from MySQL Workbench, right-click on the table and then Edit table data , then on the screen I tried the button "Import records from an external file", downloaded the CSV file, but got the following error
[Window Title] MySQL Workbench [Main Instruction] Error importing recordset [Content] error calling Python module function SQLIDEUtils.importRecordsetDataFromFile [OK]
Column names are the same as in the database, but they are partial (not all columns are like a database). The table is currently empty.
What can I do to import data into MySQL?
source share