From 069fdb7222c6c0f2363373e781b2116a140a3c21 Mon Sep 17 00:00:00 2001 From: Alexis Ben Miloud--Josselin Date: Thu, 29 Feb 2024 11:28:51 +0100 Subject: [PATCH] HowtoMySQL: Afficher plusieurs variables --- HowtoMySQL.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/HowtoMySQL.md b/HowtoMySQL.md index 45bd1339..e1e1b713 100644 --- a/HowtoMySQL.md +++ b/HowtoMySQL.md @@ -370,6 +370,12 @@ On peut aussi utiliser un wildcard `%` : > SHOW VARIABLES LIKE '%%'; ~~~ +Afficher plusieurs variables : + +~~~{.sql} +> SHOW VARIABLES WHERE Variable_name = '' OR Variable_name = ''; +~~~ + Changer dynamiquement la valeur d'une variable de configuration : ~~~{.sql}