Insert data into MariaDB table in bulk via csv

The extra column you're seeing : "", you might have accidentally added an extra custom column in the table's inspector settings.

But you can choose only the columns that you want to pick using;

table1.data.map(x => _.pick(x, ['Keyword', 'keyword_id']))

And use this in your bulk upload.