Search Results
https://dev.mysql.com/doc/refman/8.4/en/string-types.html
The string data types are CHAR, VARCHAR, BINARY, VARBINARY, BLOB, TEXT, ENUM, and SET. For information about storage requirements of the string data types, see Section 13.7, “Data Type Storage Requirements”. For descriptions of functions that ...
https://dev.mysql.com/doc/x-devapi-userguide/en/boolean-expression-strings.html
Boolean expression strings can be used when filtering collections or tables using operations, such as find() and remove(). The following example of a boolean expression string uses find() to search for all documents with a “red” color attribute ...
https://dev.mysql.com/doc/x-devapi-userguide/en/expression-strings.html
Defining string expressions is straightforward as these are easy to read and write. // Using a string expression to get all documents that // have the name field starting with 'S' var myDocs = myColl.find('name like :name').bind('name', ...The ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/boolean-expression-strings.html
Boolean expression strings can be used when filtering collections or tables using operations, such as find() and remove(). The following example of a boolean expression string uses find() to search for all documents with a “red” color attribute ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/expression-strings.html
Defining string expressions is straightforward as these are easy to read and write. // Using a string expression to get all documents that // have the name field starting with 'S' var myDocs = myColl.find('name like :name').bind('name', ...The ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/boolean-expression-strings.html
Boolean expression strings can be used when filtering collections or tables using operations, such as find() and remove(). The following example of a boolean expression string uses find() to search for all documents with a “red” color attribute ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/expression-strings.html
Defining string expressions is straightforward as these are easy to read and write. // Using a string expression to get all documents that // have the name field starting with 'S' var myDocs = myColl.find('name like :name').bind('name', ...The ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-advisors-using-strings.html
Enclose string values within double quotation marks in the Expression or the Thresholds text boxes. For example, the expression for the “Slave I/O Thread Not Running” advisor is: (%Slave_running% == "ON") && (%Slave_IO_Running% != THRESHOLD) ...
https://dev.mysql.com/doc/refman/8.4/en/server-system-variables.html
admin_ssl_cipher Command-Line Format --admin-ssl-cipher=name System Variable admin_ssl_cipher Scope Global Dynamic Yes SET_VAR Hint Applies No Type String Default Value NULL The admin_ssl_cipher system variable is like ssl_cipher, except that it ...
https://dev.mysql.com/doc/refman/8.4/en/date-and-time-functions.html
For example: mysql> SELECT DAYOFMONTH('2001-11-00'), MONTH('2005-00-00'); -> 0, 0 Other functions expect complete dates and return NULL for incomplete dates. For example: mysql> SELECT DATE_ADD('2006-05-00',INTERVAL 1 DAY); -> NULL mysql> SELECT ...