PDF (US Ltr)
- 35.0Mb
PDF (A4)
- 35.1Mb
Man Pages (TGZ)
- 254.9Kb
Man Pages (Zip)
- 359.8Kb
Info (Gzip)
- 3.4Mb
Info (Zip)
- 3.4Mb
Search Results
https://dev.mysql.com/doc/refman/5.7/en/audit-log-filter-definitions.html
The args item must satisfy these conditions: If the function takes no arguments, no args item should be given. If the function does take arguments, an args item is needed, and the arguments must be given in the order listed in the function ...For ...
https://dev.mysql.com/doc/refman/5.7/en/ldap-pluggable-authentication.html
(To associate an LDAP user DN with a MySQL account, include a BY clause that specifies an authentication string in the CREATE USER statement that creates the account.) If the MySQL account names no LDAP user DN, LDAP authentication uses the user ...
https://dev.mysql.com/doc/refman/5.7/en/audit-log-reference.html
Each audit log function returns a string that indicates whether the operation succeeded. Audit log functions treat string arguments as binary strings (which means they do not distinguish lettercase), and string return values are binary strings. If ...Audit Log Functions This section describes, for each audit log function, its purpose, calling sequence, and return ...
https://dev.mysql.com/doc/refman/5.7/en/fulltext-search.html
AGAINST takes a string to search for, and an optional modifier that indicates what type of search to perform. The search string must be a string value that is constant during query evaluation. There are three types of full-text searches: A natural ... MATCH (col1,col2,...) AGAINST (expr [search_modifier]) search_modifier: { IN NATURAL LANGUAGE MODE | IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION | IN BOOLEAN MODE | WITH QUERY EXPANSION } MySQL has support for full-text indexing and searching: A full-text index in MySQL is an index of type ...
https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html
--default-auth=plugin Command-Line Format --default-auth=plugin Type String A hint about which client-side authentication plugin to use. --login-path=name Command-Line Format --login-path=name Type String Read options from the named login path in ...
https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-programs-ndb-mgmd.html
--connect-string Command-Line Format --connect-string=connection_string Type String Default Value [none] Same as --ndb-connectstring. --defaults-extra-file Command-Line Format --defaults-extra-file=path Type String Default Value [none] Read given ...
https://dev.mysql.com/doc/refman/5.7/en/mysqlpump.html
--exclude-routines=routine_list Command-Line Format --exclude-routines=routine_list Type String Do not dump the events in routine_list, which is a list of one or more comma-separated routine (stored procedure or function) names. mysqlpump ...
https://dev.mysql.com/doc/refman/5.7/en/type-conversion.html
mysql> SELECT 1+'1'; -> 2 mysql> SELECT CONCAT(2,' test'); -> '2 test' It is also possible to convert a number to a string explicitly using the CAST() function. Conversion occurs implicitly with the CONCAT() function because it expects string ...For ... When an operator is used with operands of different types, type conversion occurs to make the operands ...
https://dev.mysql.com/doc/refman/5.7/en/charset-binary-collations.html
This section describes how the binary collation for binary strings compares to _bin collations for nonbinary strings. Binary strings (as stored using the BINARY, VARBINARY, and BLOB data types) have a character set and collation named binary. A ...
https://dev.mysql.com/doc/refman/5.7/en/create-table.html
Prefix lengths are given in characters for nonbinary string types and in bytes for binary string types. To retrieve an AUTO_INCREMENT value after inserting a row, use the LAST_INSERT_ID() SQL function or the mysql_insert_id() C API function. | ...