SHOW ERRORS [LIMIT [offset,] row_count] SHOW COUNT(*) ERRORS
Cette commande est similaire à SHOW
WARNINGS
, hormis le fait qu'au lieu d'afficher les
erreurs, alertes et notes, elle n'affiche que les erreurs.
SHOW ERRORS
est disponible depuis MySQL
4.1.0.
La clause LIMIT
a la même syntaxe que
celle de la commande SELECT
. See
Section 13.1.7, « Syntaxe de SELECT
».
La commande SHOW COUNT(*) ERRORS
affiche le
nombre d'erreurs. Vous pouvez aussi connaître ce nombre en
lisant la variable error_count
:
SHOW COUNT(*) ERRORS; SELECT @@error_count;
Pour plus d'informations, voyez
Section 13.5.3.19, « SHOW WARNINGS | ERRORS
».
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.