Search Results
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-mysqlai-ml-embed-row.html
The ML_EMBED_ROW routine uses the specified embedding model to encode the specified text or query into a vector embedding. This topic contains the following sections: ML_EMBED_ROW Syntax Syntax Examples See Also ML_EMBED_ROW Syntax mysql> SELECT ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-ml-predict-row.html
ML_PREDICT_ROW generates predictions for one or more rows of unlabeled data specified in JSON format. A call to ML_PREDICT_ROW can include columns that were not present during ML_TRAIN. ML_PREDICT_ROW ignores any extra columns, and appends them to ...A table can include extra columns, and still use the MySQL HeatWave AutoML ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-affected-rows.html
uint64_t mysql_affected_rows(MYSQL *mysql) Description mysql_affected_rows() may be called immediately after executing a statement with mysql_real_query() or mysql_query(). It returns the number of rows changed, deleted, or inserted by the last ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-metric-innodb-rowactivity-category.html
Lists the InnoDB Row Activity metrics and provides a brief description of each. Table 6.15 InnoDB Row Activity Metrics NameDescriptionRow Queries Inside The number of queries executing inside InnoDB. Row Queries Queue The number of queries in the ...
https://dev.mysql.com/doc/refman/8.4/en/innodb-next-key-locking.html
The so-called phantom problem occurs within a transaction when the same query produces different sets of rows at different times. For example, if a SELECT is executed twice, but returns a row the second time that was not returned the first time, ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-mysqlai-ml-predict-row.html
ML_PREDICT_ROW generates predictions for one or more rows of unlabeled data specified in JSON format. A call to ML_PREDICT_ROW can include columns that were not present during ML_TRAIN. ML_PREDICT_ROW ignores any extra columns, and appends them to ...A table can include extra columns, and still use the AutoML ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-fetch-row.html
MYSQL_ROW mysql_fetch_row(MYSQL_RES *result) Description Note mysql_fetch_row() is a synchronous function. Its asynchronous counterpart is mysql_fetch_row_nonblocking(), for use by applications that require asynchronous communication with the ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-ml-explain-row.html
The ML_EXPLAIN_ROW routine generates explanations for one or more rows of unlabeled data. A loaded and trained model with the appropriate prediction explainer is required to run ML_EXPLAIN_ROW. ML_EXPLAIN_ROW does not support recommendation, ...A ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-mysqlai-ml-explain-row.html
The ML_EXPLAIN_ROW routine generates explanations for one or more rows of unlabeled data. A loaded and trained model with the appropriate prediction explainer is required to run ML_EXPLAIN_ROW. ML_EXPLAIN_ROW does not support recommendation, ...A ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-fetch-row-nonblocking.html
enum net_async_status mysql_fetch_row_nonblocking(MYSQL_RES *result, MYSQL_ROW *row) Description Note mysql_fetch_row_nonblocking() is an asynchronous function. It is the counterpart of the mysql_fetch_row() synchronous function, for use by ...For ...