I know how to escape apostrophe. The question is different. How to add data with manually escaped apostrophe during steps in Workbench wizard?
I have the same question as in SQL Server to Mysql migration (using Mysql Workbench) data transfer error
How can I manually add escape to apostrophe (') and then run the last step in workbench wizard for DATA MIGRATION?
My error is different: Statement execution failed: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's Homestead','Regina Murphy','Sales Representative','707 Oxford Rd.','Ann Arbor'' at line 1:
INSERT INTO `Northwind`.`Suppliers` (`SupplierID`, `CompanyName`, `ContactName`, `ContactTitle`, `Address`, `City`, `Region`, `PostalCode`, `Country`, `Phone`, `Fax`, `HomePage`)
VALUES
(3,'Grandma Kelly's Homestead','Regina Murphy','Sales Representative','707 Oxford Rd.','Ann Arbor','MI','48104','USA','(313) 555-5735','(313) 555-3349',NULL),
It looks like apostrophe in word "Kelly's" produce the problem.