Search Results
https://dev.mysql.com/doc/ndbapi/en/ndb-start-mysql-data-types.html
The new variants use big-endian encoding of integer values which are then processed to determine the components of each temporal type. The integer part is encoded as shown in the following table: Table 2.3 Time2 encoding Bits Meaning Range 23 Sign ... This section provides information about the way in which MySQL data types are represented in NDBCLUSTER table columns and how these values can be accessed in NDB API ...
https://dev.mysql.com/doc/ndbapi/en/ndb-tablespace.html
Return value The ID of the log file group, as an unsigned 32-bit integer. Return value The tablespace's extent size in bytes, as an unsigned 32-bit integer. Tablespace Class Overview Tablespace Constructor Tablespace::getAutoGrowSpecification() ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-async-apptask.html
The app_task routine returns information about a single application task. This topic contains the following sections: Syntax Syntax Example See Also Syntax mysql> SELECT mysql_tasks.app_task( IN 'app_user_id' VARCHAR(255), IN 'task_id' ...
https://dev.mysql.com/doc/heatwave/en/mys-hwgenai-hw-chat.html
document_id: specifies the name of the optional integer column that contains the document IDs. segment_number: specifies the name of the optional integer column that contains the segment numbers. The HEATWAVE_CHAT routine automatically calls the ...
https://dev.mysql.com/doc/heatwave/en/mys-hwgenai-ml-rag.html
document_id: specifies the name of the optional integer column that contains the document IDs. segment_number: specifies the name of the optional integer column that contains the segment numbers. The ML_RAG routine performs retrieval-augmented ...
https://dev.mysql.com/doc/connector-j/en/connector-j-usagenotes-statements-callable.html
// // // Registers the second parameter as output, and // uses the type 'INTEGER' for values returned from // getObject() // cStmt.registerOutParameter(2, Types.INTEGER); // // Registers the named parameter 'inOutParam', and // uses the type ...For ...
https://dev.mysql.com/doc/refman/8.4/en/comparison-operators.html
This means that LEAST("11", "45", "2") + 0 evaluates to "11" + 0 and thus to integer 11. Table 14.4 Comparison Operators Name Description > Greater than operator >= Greater than or equal operator < Less than operator <>, != Not equal operator <= ...
https://dev.mysql.com/doc/refman/8.4/en/diagnostics-area.html
The statement information part of the diagnostics area contains these items: NUMBER: An integer indicating the number of condition areas that have information. ROW_COUNT: An integer indicating the number of rows affected by the statement. SQL ...
https://dev.mysql.com/doc/refman/8.4/en/example-auto-increment.html
Use the smallest integer data type for the AUTO_INCREMENT column that is large enough to hold the maximum sequence value you require. See Section 13.1.2, “Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT” for the ...You can also explicitly assign 0 to the column to generate sequence numbers, unless the NO_AUTO_VALUE_ON_ZERO SQL mode is ...
https://dev.mysql.com/doc/refman/8.4/en/glossary.html
In addition to enabling fast lookup of related information, foreign keys help to enforce referential integrity, by preventing any of these pointers from becoming invalid as data is inserted, updated, and deleted. See Also child table, FOREIGN KEY ...