Change the sql_mode

Unfortunately, you cannot change that setting here, and below is why:

Strict SQL mode is enforced on our database servers and cannot be disabled. Strict SQL mode is the current default of modern MySQL versions, because it’s bad to rely on MySQL to automagically fix your data for you. Fixing the data is something that should be done by the software, so I would highly urge you to contact your script developer and tell them to fix their code, rather than demanding custom server settings to fix their own errors for them.

3 Likes