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.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-show.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.