I am trying to create an insert query which contains the the semicolon and single quote together and i escaped the single quote already but the query still does not works until i remove the semi colon. Please help
Not Working
INSERT INTO users (email, website) VALUES ('demo@demo.com',
'=The_Dos_And_Don\'ts Business3735841;n=6')
Working (Semicolon Removed)
INSERT INTO users (email, website) VALUES ('demo@demo.com',
'=The_Dos_And_Don\'ts Business3735841n=6')