Select the import mode that define how the data being imported.
Use entended insert statements
Inserts records using extended insert syntax.
Example:
INSERT INTO `users` VALUES ('1', 'Peter McKindsy', '23'), ('2', 'Johnson
Ryne', '56'), ('0', 'Katherine', '23');
Use empty string as NULL
Imports NULL value if the source data field contains empty string.
Use Foreign Key constraint
Adds foreign key if there is foreign key relations between tables.
Continue on errors
Ignores errors that are encountered during the import process.