I think that the "MySQL Workbench" is a great tool for managing tables, table diagrams (relations), indexes, views and other objects, but populating and managing data is the nightmere there, due to some bugs and not-so-friendy user interface.. so I created an Excel document just for that
- if you want to load data (import) into some "MySQL Workbench" table
- if you want to create INSERT statements for "PhpMyAdmin"
In both of the cases - you will be managing data in Excel document directly. This is the tool that I have created for a personal use and I never use option 1. So some limitations are applied there.
A new file will be created in the same directory, where Excel file is.
In case 1:
- open Excel
- set "file name"
- set "file extension" to "csv"
- set "use SQL statement.." to "No"
- click on "Generate file" button
The file can then be imported in MySQL workbench (current limitation - for different tables you shall create different files!!)
In case 2:
- open Excel
- set "file name"
- set "file extension" to "txt"
- set "use SQL statement.." to "Yes"
- click on "Generate file" button
With this file - you can run all SQL inserts in PhpMyAdmin, for example.
The problem is that you have to know exact columns that you have in tables, when populating the data in Excel. So I created a helper button, which will generate the new "Worksheet" in Excel, along with column names, so you have a better managing capabilities.
- go to "Mysql Workbench"
- go to diagram view of your table
- right click on table and use the option called "Copy Insert Template to Clipboard"
- open Excel document
- paste the insert template into field "Insert statement"
- click on "Add Worksheet(Table)" button
P.S.: A button "Copy Insert Template to Clipboard" always generates data in format:
INSERT INTO `DATABASE`.`TABLE` (`COLUMN1`, `COLUMN2`, ...) VALUES (NULL, NULL, NULL, ...);
So if you for some reason can not use the Workbench - you can either create Excel worksheets yourself (using the conventions below OR create an "insert statement template" youself.
- Excel shall always have a "main" worksheet and it shall be first in the list
- Worksheet (non-main) should have the matching name with the table name in order to generate data correctly
- In non-main worksheet - row 1 can have a value: NUMBER. This will force to not-use single quote for the generated value
- In non-main worksheet - row 2 is the default value for data wors. So if you are not specifying any values in data rows -> the default value will be taken from "row 2"
- In non-main worksheet - row 3 are just column names in MySQL table. This is only for your own convenience. It has no affect to anything.
- In non-main worksheet - row 4+. These are rows with your data.
- For all data rows where you are not putting "NUMBER" in row 1 - the script will automatically enclose the value in single quote characters
- Is you are using a double quote in your data cell value - it will automatically escape using the \ symbol so " will become "
If you are a developer who wants to contribute to the project - after you change the VBA in Excel itself - don't forget to export VBA module into a sepaarte .BAS file and commit it as well, so we keep the track of changes.