Last active
June 15, 2017 13:58
-
-
Save codeasashu/fbecb5143e9aea9655b4a6bf41ad8d00 to your computer and use it in GitHub Desktop.
SET SQl to be used without fullmode only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #After login to mysql | |
| ## mysql -u <username> -p<password> | |
| #Then execute following command: | |
| SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','')); | |
| #@link: https://stackoverflow.com/a/36033983/7733768 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment