MySQL에서 int자료형인 칼럼에 string 자료형인 값을 넣으면 과연 들어갈까?답은 들어갈때도 있고, 아닐때도있다.그 의미인 즉, MYsql sql_mode에 따라 다르다. sql_mode = 'ANSI' 인 경우 들어가고,sql_mode = 'STRICT_ALL_TABLES' 이거나,sql_mode = 'TRADITIONAL' 이면 안들어간다. 아래참조.( https://dev.mysql.com/doc/refman/5.7/en/sql-mode.htmlThe Most Important SQL ModesThe most important sql_mode values are probably these:ANSIThis mode changes syntax and behavior to conform more ..