Search Results
https://dev.mysql.com/doc/refman/8.4/en/mysql-command-options.html
This option is on by default, which enables database, table, and column name completion. (Default value is 0.) --database=db_name, -D db_name Command-Line Format --database=dbname Type String The database to use. --one-database, -o Command-Line ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-run-chat.html
To view the list of available embedding models, see MySQL HeatWave In-Database Embedding Models and OCI Generative AI Service Embedding Models. Optionally, set the @chat_options variable in the following scenarios: To use a language other than ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-auto-loading-data-par.html
MySQL HeatWave automatically creates the database if it does not exist. mysql> SET @input_list = '[{ "db_name": "lakehouse_db", "tables": [{ "table_name": "table_1", "engine_attribute": { "dialect": {"format": "csv"}, "file": [{"par": ... Review the ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-auto-loading-data-rp.html
MySQL HeatWave automatically creates the database if it does not exist. mysql> SET @input_list = '[{ "db_name": "lakehouse_db", "tables": [{ "table_name": "table_1", "engine_attribute": { "dialect": {"format": "csv"}, "file": [{ "region": ... Review ...
https://dev.mysql.com/doc/refman/8.4/en/select.html
You can refer to a table within the default database as tbl_name, or as db_name.tbl_name to specify a database explicitly. FOR SHARE is a replacement for LOCK IN SHARE MODE, but LOCK IN SHARE MODE remains available for backward compatibility. Such a ... SELECT [ALL | DISTINCT | DISTINCTROW ] [HIGH_PRIORITY] [STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT] [SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS] select_expr [, select_expr] ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-replication-schema.html
ndb_apply_status Table ndb_binlog_index Table ndb_replication Table Replication in NDB Cluster makes use of a number of dedicated tables in the mysql database on each MySQL Server instance acting as an SQL node in both the cluster being replicated ...This is true regardless of whether the replica is a single server or a ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-tpch-quickstart.html
This quickstart contains the following sections: tpch Requirements Generate tpch Sample Data Create the tpch Sample Database and Import Data Load tpch Data Into MySQL HeatWave Run tpch Queries Additional tpch Queries Unload tpch Tables tpch ... The ...
https://dev.mysql.com/doc/refman/8.4/en/what-is-mysql.html
MySQL, the most popular Open Source SQL database management system, is developed, distributed, and supported by Oracle Corporation. To add, access, and process data stored in a computer database, you need a database management system such as MySQL ...The MySQL website (http://www.mysql.com/) provides the latest information about MySQL ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-select.html
In this case, it replaces the first %s with '1999-01-01', and the second with '1999-12-31'. The data used to replace the %s-markers in the query is passed as a tuple: (hire_start, hire_end). The following example shows how to query data using a ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-select.html
In this case, it replaces the first %s with '1999-01-01', and the second with '1999-12-31'. The data used to replace the %s-markers in the query is passed as a tuple: (hire_start, hire_end). The following example shows how to query data using a ...