blob: f1bb5a52c54b4e6ad824ad00f23062c86e53e1a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# show the global and session values;
#
select @@global.old;
select @@session.old;
show global variables like 'old';
show session variables like 'old';
select * from information_schema.global_variables where variable_name='old';
select * from information_schema.session_variables where variable_name='old';
set global old=1;
set session old=1;
select @@global.old;
select @@session.old;
set @@global.old=DEFAULT;
|