Ya no necesitas buscar más en internet ya que estás al sitio adecuado, tenemos la solución que quieres y sin problema.
Ejemplo: cómo deshabilitar el modo estricto en mysql
->STRICT_TRANS_TABLES is responsible for setting MySQL strict mode.->Tocheck whether strict modeis enabled ornot run the below sql:
SHOW VARIABLES LIKE'sql_mode';If one of the valueis STRICT_TRANS_TABLES,then strict modeis enabled,elsenot.In my case it gave
+--------------+------------------------------------------+ |Variable_name |Value|+--------------+------------------------------------------+|sql_mode |STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION|+--------------+------------------------------------------+
Hence strict modeis enabled in my caseas one of the valueis STRICT_TRANS_TABLES.->Todisable strict mode run the below sql:
setglobal sql_mode='';[oranymodeexcept STRICT_TRANS_TABLES. Ex: setglobal sql_mode='NO_ENGINE_SUBSTITUTION';]->To again enable strict mode run the below sql:
setglobal sql_mode='STRICT_TRANS_TABLES';
Valoraciones y reseñas
Si te gustó nuestro trabajo, puedes dejar un escrito acerca de qué te ha gustado de este artículo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)