Search Results
https://dev.mysql.com/doc/refman/8.4/en/charset-collate.html
With the COLLATE clause, you can override whatever the default collation is for a comparison.
https://dev.mysql.com/doc/refman/8.4/en/lateral-derived-tables.html
A derived table cannot normally refer to (depend on) columns of preceding tables in the same FROM clause. A derived table may be defined as a lateral derived table to specify that such references are permitted. Nonlateral derived tables are ...
https://dev.mysql.com/doc/refman/8.4/en/replication-features-limit.html
Statement-based replication of LIMIT clauses in DELETE, UPDATE, and INSERT ... SELECT statements is unsafe since the order of the rows affected is not defined. (Such statements can be replicated correctly with statement-based replication only if ...
https://dev.mysql.com/doc/refman/8.4/en/replication-features-transaction-inconsistencies.html
Inconsistencies in the sequence of transactions that have been executed from the relay log can occur depending on your replication configuration. This section explains how to avoid inconsistencies and solve any problems they cause. A transaction ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-genai-vector-store-overview.html
This section describes the Vector Store functionality available with GenAI. About Vector Store A vector store is a relational database that lets you load unstructured data. It automatically parses unstructured data formats, which include PDF ...
https://dev.mysql.com/doc/workbench/en/wb-migration-wizard-schema-target-options.html
Configuration options include: Create schema in target RDBMS Create an SQL script file Keep the schemas if they already exist.
https://dev.mysql.com/doc/connectors/en/connector-j-reference-driver-name.html
The name of the class that implements java.sql.Driver in MySQL Connector/J is com.mysql.cj.jdbc.Driver.
https://dev.mysql.com/doc/connectors/en/connector-j-support-community.html
You can join the #connectors channel in the MySQL Community Slack workspace, where you can get help directly from MySQL developers and other users.
https://dev.mysql.com/doc/connectors/en/connector-odbc-reference.html
This section provides reference material for the Connector/ODBC API, showing supported functions and methods, supported MySQL column types and the corresponding native type in Connector/ODBC, and the error codes returned by Connector/ODBC when a ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-cmd-init-db.html
Syntax: cnx.cmd_init_db(db_name) This method makes specified database the default (current) database. In subsequent queries, this database is the default for table references that include no explicit database qualifier.