Examples for business, study, careers, love, and more...
Examples :: MYSQL Examples :: Example of Show Variables Mysql statement

Example of Show Variables Mysql Statement:

SHOW VARIABLES;
SHOW INDEX FROM mydb.mytable;
SHOW VARIABLES LIKE 'max_join_size';
SHOW SESSION VARIABLES LIKE 'max_join_size';
SHOW VARIABLES LIKE '%size%';
SHOW GLOBAL VARIABLES LIKE '%size%';

Example of Mysql Show Variables


SHOW [GLOBAL | SESSION] VARIABLES
[LIKE 'pattern' | WHERE expr]