SHOW VARIABLES
This statement is used to display Doris system variables, which can be queried by conditions
grammar:
SHOW [GLOBAL | SESSION] VARIABLES [LIKE 'pattern' | WHERE expr]
illustrate:
The default here is to match the Variable_name, here is the exact match
show variables like 'max_connections';
Matching through the percent sign (%) wildcard can match multiple items
show variables like '%connec%';
Use the Where clause for matching queries
show variables where variable_name = 'version';
SHOW, VARIABLES