Search Results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-show-status.html
The Status column contains a description of the cluster's status; possible values and their meanings are shown in the following table: Table 5.1 Status values shown by show status --cluster Status Value Meaning fully operational All cluster ... show ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-type-codes.html
The following table shows the permissible values for the buffer_type member of MYSQL_BIND structures for input values sent to the server. The table shows the C variable types that you can use, the corresponding type codes, and the SQL data types for ... The buffer_type member of MYSQL_BIND structures indicates the data type of the C language variable bound to a statement parameter or result set ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-execute.html
Metadata changes to tables or views referred to by prepared statements are detected and cause automatic repreparation of the statement when it is next executed. Example The following example demonstrates how to create and populate a table using ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/adding-loadable-function.html
To verify that the arguments are of a required type or, alternatively, to tell MySQL to coerce arguments to the required types when the main function is called. As an alternative to requiring your function's arguments to be of particular types, you ... The MySQL interface for loadable functions provides the following features and capabilities: Functions can return string, integer, or real values and can accept arguments of those same ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-api-components.html
SQL statements: INSTALL PLUGIN registers a plugin in the mysql.plugin table and loads the plugin code. UNINSTALL PLUGIN unregisters a plugin from the mysql.plugin table and unloads the plugin code. The mysql.plugin table lists each plugin that was ...The WITH PARSER clause for full-text index creation associates a full-text parser plugin with a given FULLTEXT ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-full-text-plugins.html
Table 4.3 Full-Text Parser Token Types Token Value Meaning FT_TOKEN_EOF End of data FT_TOKEN_WORD A regular word FT_TOKEN_LEFT_PAREN The beginning of a group or subexpression FT_TOKEN_RIGHT_PAREN The end of a group or subexpression FT_TOKEN_STOPWORD ... MySQL supports server-side full-text parser plugins with MyISAM and ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-classification-overview.html
mysql> CREATE DATABASE classification_data; mysql> USE classification_data; Create the table to insert the sample data into. This topic describes how to prepare the data to use for a classification machine learning model. The classification ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-predictions-ml-predict-row.html
The column names must match the feature column names in the trained table. Generating Predictions on One or More Rows of Data Another way to generate predictions is to create a JSON_OBJECT with specified columns and labels, and then generate ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-prepare-data-overview.html
Labeled Data Example A table of data for bank customers can be a labeled dataset. The feature columns in the table have data related to job, marital status, education, and city of residence. You can use some of the data in this table to train a ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-preparing-a-recommendation-model.html
mysql> CREATE DATABASE recommendation_data; mysql> USE recommendation_data; Create the table to insert the sample data into. mysql> CREATE TABLE training_dataset ( user_id VARCHAR(3), item_id VARCHAR(3), rating DECIMAL(3, 1), PRIMARY KEY (user_id, ... This topic describes how to prepare the data to use for a recommendation machine learning model using explicit ...