Guest User

Untitled

a guest
Jan 17th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. # Note: only works for current session
  2.  
  3. # See previous sql_mode
  4. SELECT @@sql_mode;
  5.  
  6. # Disable strict mode (all modes)
  7. SET sql_mode = '';
  8.  
  9. # To restore previous sql_mode run the SET command with the output of the SELECT command or reload MySQL
Add Comment
Please, Sign In to add comment