PDF (US Ltr)
- 43.2Mb
PDF (A4)
- 43.3Mb
Man Pages (TGZ)
- 295.2Kb
Man Pages (Zip)
- 400.4Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/show-character-set.html
SHOW {CHARACTER SET | CHARSET} [LIKE 'pattern' | WHERE expr] The SHOW CHARACTER SET statement shows all available character sets. The LIKE clause, if present, indicates which character set names to match. The WHERE clause can be given to select ...
https://dev.mysql.com/doc/refman/8.0/en/show-open-tables.html
SHOW OPEN TABLES [{FROM | IN} db_name] [LIKE 'pattern' | WHERE expr] SHOW OPEN TABLES lists the non-TEMPORARY tables that are currently open in the table cache. The FROM clause, if present, restricts the tables shown to those present in the db_name ...
https://dev.mysql.com/doc/refman/8.0/en/show-profiles.html
Note The SHOW PROFILE and SHOW PROFILES statements are deprecated; expect it to be removed in a future MySQL release. SHOW PROFILES The SHOW PROFILES statement, together with SHOW PROFILE, displays profiling information that indicates resource ...
https://dev.mysql.com/doc/refman/8.0/en/show-slave-hosts.html
From MySQL 8.0.22, SHOW SLAVE HOSTS is deprecated and the alias SHOW REPLICAS should be used instead. {SHOW SLAVE HOSTS | SHOW REPLICAS} Displays a list of replicas currently registered with the source. The statement works in the same way as ...
https://dev.mysql.com/doc/refman/8.0/en/show-slave-status.html
From MySQL 8.0.22, SHOW SLAVE STATUS is deprecated and the alias SHOW REPLICA STATUS should be used instead. SHOW {SLAVE | REPLICA} STATUS [FOR CHANNEL channel] This statement provides status information on essential parameters of the replica ...
https://dev.mysql.com/doc/refman/8.0/en/show.html
Many MySQL APIs (such as PHP) enable you to treat the result returned from a SHOW statement as you would a result set from a SELECT; see Chapter 31, Connectors and APIs, or your API documentation for more information. SHOW has many forms that ...
https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions.html
MySQL implements two sets of functions using function names defined by the OpenGIS specification. The functions described in this section take two geometries as arguments and return a qualitative or quantitative relation between them. One set tests ...
https://dev.mysql.com/doc/refman/8.0/en/sql-statements.html
This chapter describes the syntax for the SQL statements supported by MySQL.
https://dev.mysql.com/doc/refman/8.0/en/start-slave.html
From MySQL 8.0.22, START SLAVE is deprecated and the alias START REPLICA should be used instead. START {SLAVE | REPLICA} [thread_types] [until_option] [connection_options] [channel_option] thread_types: [thread_type [, thread_type] ... ] ...
https://dev.mysql.com/doc/refman/8.0/en/statement-optimization.html
The tuning guidelines in this section help to speed up all kinds of MySQL applications. The core logic of a database application is performed through SQL statements, whether issued directly through an interpreter or submitted behind the scenes ...