PDF (US Ltr)
- 35.0Mb
PDF (A4)
- 35.1Mb
Man Pages (TGZ)
- 254.9Kb
Man Pages (Zip)
- 359.9Kb
Info (Gzip)
- 3.4Mb
Info (Zip)
- 3.4Mb
Search Results
https://dev.mysql.com/doc/refman/5.7/en/verifying-md5-checksum.html
Linux and Microsoft Windows examples: $> md5sum mysql-standard-5.7.44-linux-i686.tar.gz aaab65abbec64d5e907dcd41b8699945 mysql-standard-5.7.44-linux-i686.tar.gz $> md5.exe mysql-installer-community-5.7.44.msi aaab65abbec64d5e907dcd41b8699945 ...
https://dev.mysql.com/doc/refman/5.7/en/adding-collation-choosing-id.html
The number member of the MY_CHARSET_INFO data structure returned by the mysql_get_character_set_info() C API function. To add a collation, you must choose an ID value that is not currently used. The range of IDs from 1024 to 2047 is reserved for ...
https://dev.mysql.com/doc/refman/5.7/en/alter-database.html
See Section 13.1.16, “CREATE PROCEDURE and CREATE FUNCTION Statements”.) If you change the default character set or collation for a database, any stored routines that are to use the new defaults must be dropped and recreated. ALTER {DATABASE | ...
https://dev.mysql.com/doc/refman/5.7/en/alter-table-generated-columns.html
As of MySQL 5.7.10, if expression evaluation causes truncation or provides incorrect input to a function, the ALTER TABLE statement terminates with an error and the DDL operation is rejected. ALTER TABLE operations permitted for generated columns ...
https://dev.mysql.com/doc/refman/5.7/en/any-in-some-subqueries.html
The expression is TRUE if table t2 contains (21,14,7) because there is a value 7 in t2 that is less than 10. The expression is FALSE if table t2 contains (20,10), or if table t2 is empty. The expression is unknown (that is, NULL) if table t2 ...
https://dev.mysql.com/doc/refman/5.7/en/apis-ruby-mysqlruby.html
For information on installing the module, and the functions exposed, see MySQL/Ruby. The MySQL/Ruby module provides access to MySQL databases using Ruby through libmysqlclient.
https://dev.mysql.com/doc/refman/5.7/en/apis-ruby-rubymysql.html
For information on installing the module, and the functions exposed, see Ruby/MySQL. The Ruby/MySQL module provides access to MySQL databases using Ruby through a native driver interface using the MySQL network protocol.
https://dev.mysql.com/doc/refman/5.7/en/archive-storage-engine.html
The ARCHIVE storage engine produces special-purpose tables that store large amounts of unindexed data in a very small footprint. To enable this storage engine if you build MySQL from source, invoke CMake with the -DWITH_ARCHIVE_STORAGE_ENGINE ...
https://dev.mysql.com/doc/refman/5.7/en/audit-log-elements.html
A set of functions enables manipulation of filtering definitions that control logging behavior, the encryption password, and log file reading. MySQL Enterprise Audit is based on the audit log plugin and related elements: A server-side plugin named ...
https://dev.mysql.com/doc/refman/5.7/en/calculating-days.html
The following example shows how you can use the bit group functions to calculate the number of days per month a user has visited a Web page. CREATE TABLE t1 (year YEAR, month INT UNSIGNED, day INT UNSIGNED); INSERT INTO t1 ...