PDF (US Ltr)
        - 35.1Mb
                                PDF (A4)
        - 35.2Mb
                                Man Pages (TGZ)
        - 256.4Kb
                                Man Pages (Zip)
        - 361.2Kb
                                Info (Gzip)
        - 3.4Mb
                                Info (Zip)
        - 3.4Mb
                    
            Search Results
                        
                    
                    
            https://dev.mysql.com/doc/refman/5.7/en/bug-reports.html
                                Its effect for a given value should be as described in Section 9.2.3, “Identifier Case Sensitivity”.  Before posting a bug report about a problem, please try to verify that it is a bug and that it has not been reported already: Start by ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/charset-mysql.html
                                Collation Meaning latin1_bin Binary according to latin1 encoding latin1_danish_ci Danish/Norwegian latin1_general_ci Multilingual (Western European) latin1_general_cs Multilingual (ISO Western European), case-sensitive latin1_german1_ci German DIN-1 ...To display the available character sets, use the INFORMATION_SCHEMA CHARACTER_SETS table or the SHOW CHARACTER SET ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/command-line-options.html
                                 Program options specified on the command line follow these rules: Options are given after the command name. An option argument begins with one dash or two dashes, depending on whether it is a short form or long form of the option name. For example, ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html
                                By default, string comparisons are not case-sensitive and use the current character set.  Table 12.4 Comparison Operators Name Description > Greater than operator >= Greater than or equal operator < Less than operator <>, != Not equal operator <= ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/create-event.html
                                Event names are not case-sensitive, so you cannot have two events named myevent and MyEvent in the same schema.  CREATE [DEFINER = user] EVENT [IF NOT EXISTS] event_name ON SCHEDULE schedule [ON COMPLETION [NOT] PRESERVE] [ENABLE | DISABLE | DISABLE ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html
                                By default, a stored routine is associated with the default database. To associate the routine explicitly with a given database, specify the name as db_name.sp_name when you create it. The CREATE FUNCTION statement is also used in MySQL to support ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/creating-database.html
                                Otherwise, you need to create it yourself: mysql> CREATE DATABASE menagerie; Under Unix, database names are case-sensitive (unlike SQL keywords), so you must always refer to your database as menagerie, not as Menagerie, MENAGERIE, or some other ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/declare-local-variable.html
                                type [DEFAULT value] This statement declares local variables within stored programs. To provide a default value for a variable, include a DEFAULT clause. The value can be specified as an expression; it need not be a constant. If the DEFAULT clause ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/encrypted-connection-protocols-ciphers.html
                                The variable value is a list of one or more comma-separated protocol versions from this list (not case-sensitive): TLSv1, TLSv1.1, TLSv1.2.  MySQL supports multiple TLS protocols and ciphers, and enables configuring which protocols and ciphers to ...
                                            
                https://dev.mysql.com/doc/refman/5.7/en/enum.html
                                For binary or case-sensitive collations, lettercase is taken into account when assigning values to the column.  An ENUM is a string object with a value chosen from a list of permitted values that are enumerated explicitly in the column specification ...