Search Results
                    
                    
            https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-17.html
                                (WL #12970) Connector/NET now supports the new utf8mb4_0900_bin collation added for the utf8mb4 Unicode character set in MySQL 8.0.17. In addition, the set of possible index field data types (used as values of member type in index field ...
                                            
                https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-table-syntax-sql.html
                                mysql> CREATE EXTERNAL TABLE table_1( col_1 int, col_2 int, col_3 int) FILE_FORMAT = (FORMAT csv) FILES = (URI = 'oci://mybucket@mynamespace/data_files/data_file_1.csv') VERIFY_KEY_CONSTRAINTS = 0; Refer to the following table to review how ... As ...
                                            
                https://dev.mysql.com/doc/heatwave/en/mys-hw-limitations-data-types.html
                                enum_col IS [NOT] {NULL|TRUE|FALSE} The IN() function in combination with numeric arguments (constants, functions, or columns) and string constants. CAST(enum_col) AS {[N]CHAR} is supported only in the SELECT list and when it is not nested in ...The ...
                                            
                https://dev.mysql.com/doc/relnotes/heatwave/en/news-8-0-25.html
                                For example, the following query can now be offloaded to MySQL HeatWave for execution: SELECT DISTINCT a FROM t1 ORDER BY c DESC; (Bug #32583856) Query plan statistics are now collected and stored in a statistics cache when a query is executed in ...
                                            
                https://dev.mysql.com/doc/connector-j/en/connector-j-query-attributes.html
                                 Connector/J supports Query Attributes when it has been enabled on the server by installing the query_attributes component (see Prerequisites for Using Query Attributes for details). Attributes are set for a query by using the setAttribute() method ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-compatibility.html
                                 For MaxDB compatibility these two statements are the same: CREATE TABLE t1 (f1 CHAR(N) UNICODE); CREATE TABLE t1 (f1 CHAR(N) CHARACTER SET ucs2); Both the UNICODE attribute and the ucs2 character set are deprecated; you should expect them to be ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-unicode-utf32.html
                                 The utf32 character set is fixed length (like ucs2 and unlike utf16). utf32 uses 32 bits for every character, unlike ucs2 (which uses 16 bits for every character), and unlike utf16 (which uses 16 bits for some characters and 32 bits for others). 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-unicode-utf8mb3.html
                                 The utf8mb3 character set has these characteristics: Supports BMP characters only (no support for supplementary characters) Requires a maximum of three bytes per multibyte character. Applications that use UTF-8 data but require supplementary ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/column-indexes.html
                                Index Prefixes FULLTEXT Indexes Spatial Indexes Indexes in the MEMORY Storage Engine Index Prefixes With col_name(N) syntax in an index specification for a string column, you can create an index that uses only the first N characters of the column. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/data-size.html
                                The compact family of row formats also optimizes CHAR column storage when using a variable-length character set such as utf8mb3 or utf8mb4. With ROW_FORMAT=REDUNDANT, CHAR(N) occupies N × the maximum byte length of the character set. Many languages ... Design your tables to minimize their space on the ...