Rechercher dans le manuel MySQL
13.7.6 SHOW Syntax
[+/-]
- 13.7.6.1 SHOW BINARY LOGS Syntax
- 13.7.6.2 SHOW BINLOG EVENTS Syntax
- 13.7.6.3 SHOW CHARACTER SET Syntax
- 13.7.6.4 SHOW COLLATION Syntax
- 13.7.6.5 SHOW COLUMNS Syntax
- 13.7.6.6 SHOW CREATE DATABASE Syntax
- 13.7.6.7 SHOW CREATE EVENT Syntax
- 13.7.6.8 SHOW CREATE FUNCTION Syntax
- 13.7.6.9 SHOW CREATE PROCEDURE Syntax
- 13.7.6.10 SHOW CREATE TABLE Syntax
- 13.7.6.11 SHOW CREATE TRIGGER Syntax
- 13.7.6.12 SHOW CREATE USER Syntax
- 13.7.6.13 SHOW CREATE VIEW Syntax
- 13.7.6.14 SHOW DATABASES Syntax
- 13.7.6.15 SHOW ENGINE Syntax
- 13.7.6.16 SHOW ENGINES Syntax
- 13.7.6.17 SHOW ERRORS Syntax
- 13.7.6.18 SHOW EVENTS Syntax
- 13.7.6.19 SHOW FUNCTION CODE Syntax
- 13.7.6.20 SHOW FUNCTION STATUS Syntax
- 13.7.6.21 SHOW GRANTS Syntax
- 13.7.6.22 SHOW INDEX Syntax
- 13.7.6.23 SHOW MASTER STATUS Syntax
- 13.7.6.24 SHOW OPEN TABLES Syntax
- 13.7.6.25 SHOW PLUGINS Syntax
- 13.7.6.26 SHOW PRIVILEGES Syntax
- 13.7.6.27 SHOW PROCEDURE CODE Syntax
- 13.7.6.28 SHOW PROCEDURE STATUS Syntax
- 13.7.6.29 SHOW PROCESSLIST Syntax
- 13.7.6.30 SHOW PROFILE Syntax
- 13.7.6.31 SHOW PROFILES Syntax
- 13.7.6.32 SHOW RELAYLOG EVENTS Syntax
- 13.7.6.33 SHOW SLAVE HOSTS Syntax
- 13.7.6.34 SHOW SLAVE STATUS Syntax
- 13.7.6.35 SHOW STATUS Syntax
- 13.7.6.36 SHOW TABLE STATUS Syntax
- 13.7.6.37 SHOW TABLES Syntax
- 13.7.6.38 SHOW TRIGGERS Syntax
- 13.7.6.39 SHOW VARIABLES Syntax
- 13.7.6.40 SHOW WARNINGS Syntax
SHOW
has many forms that provide
information about databases, tables, columns, or status
information about the server. This section describes those
following:
If the syntax for a given SHOW
statement includes a LIKE
'
part,
pattern
''
is a
string that can contain the SQL pattern
'%
and
_
wildcard characters. The pattern is useful
for restricting statement output to matching values.
Several SHOW
statements also accept
a WHERE
clause that provides more flexibility
in specifying which rows to display. See
Section 25.41, “Extensions to SHOW Statements”.
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 28, Connectors and APIs, or your API documentation for
more information. In addition, you can work in SQL with results
from queries on tables in the
INFORMATION_SCHEMA
database, which you cannot
easily do with results from SHOW
statements. See Chapter 25, INFORMATION_SCHEMA Tables.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-show.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.