Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/flow-control-functions.html
                                The second syntax returns the result for the first condition that is true. If no comparison or condition is true, the result after ELSE is returned, or NULL if there is no ELSE part. Note The syntax of the CASE operator described here differs ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/insert.html
                                 INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE] [INTO] tbl_name [PARTITION (partition_name [, partition_name] ...)] [(col_name [, col_name] ...)] { {VALUES | VALUE} (value_list) [, (value_list)] ... | TABLE table_name | VALUES ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/partitioning-limitations-partitioning-keys-unique-keys.html
                                 This section discusses the relationship of partitioning keys with primary keys and unique keys. The rule governing this relationship can be expressed as follows: All columns used in the partitioning expression for a partitioned table must be part ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/sql-mode.html
                                 The MySQL server can operate in different SQL modes, and can apply these modes differently for different clients, depending on the value of the sql_mode system variable. DBAs can set the global SQL mode to match site server operating requirements, ...
                                            
                https://dev.mysql.com/doc/internals/en/generating-browsable-binary-log-information.html
                                 Source files in the sql directory of a MySQL source tree or source distribution contain comments that can be processed with doxygen to generate HTML files that describe classes, files, and so forth. To generate the HTML files and view information ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/server-system-variables.html
                                 The MySQL server maintains many system variables that affect its operation. Most system variables can be set at server startup using options on the command line or in an option file. Most of them can be changed dynamically at runtime using the SET ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-tutorial-visual-explain-dbt3.html
                                 This tutorial describes how to use Explain reports to locate and fix problematic (slow) queries. It uses the DBT-3 database and begins with the following simple query example. SELECT * FROM orders WHERE YEAR(o_orderdate) = 1992 AND ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-reference-type-conversions.html
                                 MySQL Connector/J is flexible in the way it handles conversions between MySQL data types and Java data types. In general, any MySQL data type can be converted to a java.lang.String, and any numeric type can be converted to any of the Java numeric ...
                                            MySQL NDB Cluster API Developer Guide :: 4.2.2.5 ClusterJ Mappings Between MySQL and Java Data Types
                https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-mappings.html
                                 ClusterJ provides mappings for all of the common MySQL database types to Java types. Java object wrappers of primitive types should be mapped to nullable database columns. Note Since Java does not have native unsigned data types, UNSIGNED columns ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-column.html
                                 This section provides information about the Column class, which models a column in an NDBCLUSTER table. The NDB API provides no support for constructing such formats; however, they are checked by the NDB kernel. Type Description ArrayType Specifies ...