How to set sql_mode in my.cnf in MySQL 8?












0















I'm running MySQL 8.0.11 community version. I need to set sql_mode to exclude ONLY_FULL_GROUP_BY in my.cnf so that it's restart safe. I tried the following variants:



sql_mode= STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
sql_mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
sql-mode = STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
sql-mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


They all fail in the same manner whether the variable is named 'sql_mode' or 'sql-mode':



mysqld --verbose --help | grep "sql[-_]mode"
2018-06-19T15:22:51.667734Z 0 [ERROR] [MY-011071] [Server] /usr/sbin/mysqld: Error while setting value 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' to 'sql_mode'
--sql-mode=name Syntax: sql-mode=mode[,mode[,mode...]]. See the manual
2018-06-19T15:22:51.675498Z 0 [ERROR] [MY-010119] [Server] Aborting


sql-mode



It would seem that mysqld process my.cnf and converts 'sql_mode' or 'sql-mode' to 'sql_mode', which then it rejects!



The question is how to get around this?










share|improve this question





























    0















    I'm running MySQL 8.0.11 community version. I need to set sql_mode to exclude ONLY_FULL_GROUP_BY in my.cnf so that it's restart safe. I tried the following variants:



    sql_mode= STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
    sql_mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
    sql-mode = STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
    sql-mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


    They all fail in the same manner whether the variable is named 'sql_mode' or 'sql-mode':



    mysqld --verbose --help | grep "sql[-_]mode"
    2018-06-19T15:22:51.667734Z 0 [ERROR] [MY-011071] [Server] /usr/sbin/mysqld: Error while setting value 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' to 'sql_mode'
    --sql-mode=name Syntax: sql-mode=mode[,mode[,mode...]]. See the manual
    2018-06-19T15:22:51.675498Z 0 [ERROR] [MY-010119] [Server] Aborting


    sql-mode



    It would seem that mysqld process my.cnf and converts 'sql_mode' or 'sql-mode' to 'sql_mode', which then it rejects!



    The question is how to get around this?










    share|improve this question



























      0












      0








      0








      I'm running MySQL 8.0.11 community version. I need to set sql_mode to exclude ONLY_FULL_GROUP_BY in my.cnf so that it's restart safe. I tried the following variants:



      sql_mode= STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
      sql_mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
      sql-mode = STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
      sql-mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


      They all fail in the same manner whether the variable is named 'sql_mode' or 'sql-mode':



      mysqld --verbose --help | grep "sql[-_]mode"
      2018-06-19T15:22:51.667734Z 0 [ERROR] [MY-011071] [Server] /usr/sbin/mysqld: Error while setting value 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' to 'sql_mode'
      --sql-mode=name Syntax: sql-mode=mode[,mode[,mode...]]. See the manual
      2018-06-19T15:22:51.675498Z 0 [ERROR] [MY-010119] [Server] Aborting


      sql-mode



      It would seem that mysqld process my.cnf and converts 'sql_mode' or 'sql-mode' to 'sql_mode', which then it rejects!



      The question is how to get around this?










      share|improve this question
















      I'm running MySQL 8.0.11 community version. I need to set sql_mode to exclude ONLY_FULL_GROUP_BY in my.cnf so that it's restart safe. I tried the following variants:



      sql_mode= STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
      sql_mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
      sql-mode = STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
      sql-mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


      They all fail in the same manner whether the variable is named 'sql_mode' or 'sql-mode':



      mysqld --verbose --help | grep "sql[-_]mode"
      2018-06-19T15:22:51.667734Z 0 [ERROR] [MY-011071] [Server] /usr/sbin/mysqld: Error while setting value 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' to 'sql_mode'
      --sql-mode=name Syntax: sql-mode=mode[,mode[,mode...]]. See the manual
      2018-06-19T15:22:51.675498Z 0 [ERROR] [MY-010119] [Server] Aborting


      sql-mode



      It would seem that mysqld process my.cnf and converts 'sql_mode' or 'sql-mode' to 'sql_mode', which then it rejects!



      The question is how to get around this?







      mysql mysql-8.0 sql-mode






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 2 at 18:00









      Bill Karwin

      383k64520678




      383k64520678










      asked Jan 2 at 14:09









      RayChRayCh

      106129




      106129
























          3 Answers
          3






          active

          oldest

          votes


















          1














          Assuming that "restart safe" just means permanent, the syntax is:



          sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


          From Setting the SQL Mode:




          To set the SQL mode at server startup, use the --sql-mode="modes"
          option on the command line, or sql-mode="modes" in an option file
          such as my.cnf (Unix operating systems) or my.ini (Windows). modes
          is a list of different modes separated by commas.




          If it doesn't work for your, perhaps you're placing it under the wrong section. For server settings that needs to be [mysqld], as in:



          [mysqld]
          sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"





          share|improve this answer































            1














            The SQL mode NO_AUTO_CREATE_USER was removed in MySQL 8.0, and it's no longer recognized.



            https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-deprecations says:




            The following features related to account management are removed:




            • Using GRANT to create users. Instead, use CREATE USER. Following this practice makes the NO_AUTO_CREATE_USER SQL mode immaterial for
              GRANT statements, so it too is removed.




            Change your sql_mode to "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION". I tested this on my sandbox instance of 8.0.11 and it worked.



            Either spelling of sql-mode or sql_mode are both fine.



            Using quotes or omitting quotes are both fine.






            share|improve this answer































              0














              I've not found a way around the problem using my.cnf. To be mysqld restart safe, I need to avoid having to do:



              SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));


              The only way I found to get around this is to set an environment variable:



              sudo systemctl set-environment MYSQLD_OPTS="--sql-mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION"
              sudo systemctl restart mysqld


              Better solutions welcomed.






              share|improve this answer























                Your Answer






                StackExchange.ifUsing("editor", function () {
                StackExchange.using("externalEditor", function () {
                StackExchange.using("snippets", function () {
                StackExchange.snippets.init();
                });
                });
                }, "code-snippets");

                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "1"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54007824%2fhow-to-set-sql-mode-in-my-cnf-in-mysql-8%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                1














                Assuming that "restart safe" just means permanent, the syntax is:



                sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


                From Setting the SQL Mode:




                To set the SQL mode at server startup, use the --sql-mode="modes"
                option on the command line, or sql-mode="modes" in an option file
                such as my.cnf (Unix operating systems) or my.ini (Windows). modes
                is a list of different modes separated by commas.




                If it doesn't work for your, perhaps you're placing it under the wrong section. For server settings that needs to be [mysqld], as in:



                [mysqld]
                sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"





                share|improve this answer




























                  1














                  Assuming that "restart safe" just means permanent, the syntax is:



                  sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


                  From Setting the SQL Mode:




                  To set the SQL mode at server startup, use the --sql-mode="modes"
                  option on the command line, or sql-mode="modes" in an option file
                  such as my.cnf (Unix operating systems) or my.ini (Windows). modes
                  is a list of different modes separated by commas.




                  If it doesn't work for your, perhaps you're placing it under the wrong section. For server settings that needs to be [mysqld], as in:



                  [mysqld]
                  sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"





                  share|improve this answer


























                    1












                    1








                    1







                    Assuming that "restart safe" just means permanent, the syntax is:



                    sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


                    From Setting the SQL Mode:




                    To set the SQL mode at server startup, use the --sql-mode="modes"
                    option on the command line, or sql-mode="modes" in an option file
                    such as my.cnf (Unix operating systems) or my.ini (Windows). modes
                    is a list of different modes separated by commas.




                    If it doesn't work for your, perhaps you're placing it under the wrong section. For server settings that needs to be [mysqld], as in:



                    [mysqld]
                    sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"





                    share|improve this answer













                    Assuming that "restart safe" just means permanent, the syntax is:



                    sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


                    From Setting the SQL Mode:




                    To set the SQL mode at server startup, use the --sql-mode="modes"
                    option on the command line, or sql-mode="modes" in an option file
                    such as my.cnf (Unix operating systems) or my.ini (Windows). modes
                    is a list of different modes separated by commas.




                    If it doesn't work for your, perhaps you're placing it under the wrong section. For server settings that needs to be [mysqld], as in:



                    [mysqld]
                    sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jan 2 at 14:21









                    Álvaro GonzálezÁlvaro González

                    107k30189279




                    107k30189279

























                        1














                        The SQL mode NO_AUTO_CREATE_USER was removed in MySQL 8.0, and it's no longer recognized.



                        https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-deprecations says:




                        The following features related to account management are removed:




                        • Using GRANT to create users. Instead, use CREATE USER. Following this practice makes the NO_AUTO_CREATE_USER SQL mode immaterial for
                          GRANT statements, so it too is removed.




                        Change your sql_mode to "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION". I tested this on my sandbox instance of 8.0.11 and it worked.



                        Either spelling of sql-mode or sql_mode are both fine.



                        Using quotes or omitting quotes are both fine.






                        share|improve this answer




























                          1














                          The SQL mode NO_AUTO_CREATE_USER was removed in MySQL 8.0, and it's no longer recognized.



                          https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-deprecations says:




                          The following features related to account management are removed:




                          • Using GRANT to create users. Instead, use CREATE USER. Following this practice makes the NO_AUTO_CREATE_USER SQL mode immaterial for
                            GRANT statements, so it too is removed.




                          Change your sql_mode to "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION". I tested this on my sandbox instance of 8.0.11 and it worked.



                          Either spelling of sql-mode or sql_mode are both fine.



                          Using quotes or omitting quotes are both fine.






                          share|improve this answer


























                            1












                            1








                            1







                            The SQL mode NO_AUTO_CREATE_USER was removed in MySQL 8.0, and it's no longer recognized.



                            https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-deprecations says:




                            The following features related to account management are removed:




                            • Using GRANT to create users. Instead, use CREATE USER. Following this practice makes the NO_AUTO_CREATE_USER SQL mode immaterial for
                              GRANT statements, so it too is removed.




                            Change your sql_mode to "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION". I tested this on my sandbox instance of 8.0.11 and it worked.



                            Either spelling of sql-mode or sql_mode are both fine.



                            Using quotes or omitting quotes are both fine.






                            share|improve this answer













                            The SQL mode NO_AUTO_CREATE_USER was removed in MySQL 8.0, and it's no longer recognized.



                            https://dev.mysql.com/doc/refman/8.0/en/mysql-nutshell.html#mysql-nutshell-deprecations says:




                            The following features related to account management are removed:




                            • Using GRANT to create users. Instead, use CREATE USER. Following this practice makes the NO_AUTO_CREATE_USER SQL mode immaterial for
                              GRANT statements, so it too is removed.




                            Change your sql_mode to "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION". I tested this on my sandbox instance of 8.0.11 and it worked.



                            Either spelling of sql-mode or sql_mode are both fine.



                            Using quotes or omitting quotes are both fine.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 2 at 18:03









                            Bill KarwinBill Karwin

                            383k64520678




                            383k64520678























                                0














                                I've not found a way around the problem using my.cnf. To be mysqld restart safe, I need to avoid having to do:



                                SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));


                                The only way I found to get around this is to set an environment variable:



                                sudo systemctl set-environment MYSQLD_OPTS="--sql-mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION"
                                sudo systemctl restart mysqld


                                Better solutions welcomed.






                                share|improve this answer




























                                  0














                                  I've not found a way around the problem using my.cnf. To be mysqld restart safe, I need to avoid having to do:



                                  SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));


                                  The only way I found to get around this is to set an environment variable:



                                  sudo systemctl set-environment MYSQLD_OPTS="--sql-mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION"
                                  sudo systemctl restart mysqld


                                  Better solutions welcomed.






                                  share|improve this answer


























                                    0












                                    0








                                    0







                                    I've not found a way around the problem using my.cnf. To be mysqld restart safe, I need to avoid having to do:



                                    SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));


                                    The only way I found to get around this is to set an environment variable:



                                    sudo systemctl set-environment MYSQLD_OPTS="--sql-mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION"
                                    sudo systemctl restart mysqld


                                    Better solutions welcomed.






                                    share|improve this answer













                                    I've not found a way around the problem using my.cnf. To be mysqld restart safe, I need to avoid having to do:



                                    SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));


                                    The only way I found to get around this is to set an environment variable:



                                    sudo systemctl set-environment MYSQLD_OPTS="--sql-mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION"
                                    sudo systemctl restart mysqld


                                    Better solutions welcomed.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Jan 2 at 14:09









                                    RayChRayCh

                                    106129




                                    106129






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Stack Overflow!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54007824%2fhow-to-set-sql-mode-in-my-cnf-in-mysql-8%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                                        Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

                                        A Topological Invariant for $pi_3(U(n))$