How to turn on/off MySQL strict mode in localhost (xampp)?

后端 未结 11 2127
时光说笑
时光说笑 2020-12-04 07:54

I want to know how to check whether MySQL strict mode is on or off in localhost(xampp).

If on then for what modes and how to off.

If off then how to on.

11条回答
  •  失恋的感觉
    2020-12-04 08:33

    Check the value with

    SELECT @@GLOBAL.sql_mode;
    

    then clear the @@global.sql_mode by using this command:

    SET @@GLOBAL.sql_mode=''
    

提交回复
热议问题