miguel@txg:~/dbs/5.1$ bin/mysql -uroot test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.1.35-debug Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> SELECT TABLE_NAME, REPLACE('Table: ?','?',TABLE_NAME) -> FROM INFORMATION_SCHEMA.TABLES -> WHERE TABLE_SCHEMA = 'mysql'; +---------------------------+------------------------------------+ | TABLE_NAME | REPLACE('Table: ?','?',TABLE_NAME) | +---------------------------+------------------------------------+ | columns_priv | Table: columns_priv | | db | Table: db | | event | Table: event | | func | Table: func | | general_log | Table: general_log | | help_category | Table: help_category | | help_keyword | Table: help_keyword | | help_relation | Table: help_relation | | help_topic | Table: help_topic | | host | Table: host | | ndb_binlog_index | Table: ndb_binlog_index | | plugin | Table: plugin | | proc | Table: proc | | procs_priv | Table: procs_priv | | servers | Table: servers | | slow_log | Table: slow_log | | tables_priv | Table: tables_priv | | time_zone | Table: time_zone | | time_zone_leap_second | Table: time_zone_leap_second | | time_zone_name | Table: time_zone_name | | time_zone_transition | Table: time_zone_transition | | time_zone_transition_type | Table: time_zone_transition_type | | user | Table: user | +---------------------------+------------------------------------+ 23 rows in set (0.01 sec) Your MySQL connection id is 1 Server version: 5.0.82-debug Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> SELECT TABLE_NAME, REPLACE('Table: ?','?',TABLE_NAME) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'mysql'; +---------------------------+------------------------------------+ | TABLE_NAME | REPLACE('Table: ?','?',TABLE_NAME) | +---------------------------+------------------------------------+ | columns_priv | Table: columns_priv | | db | Table: columns_priv | | func | Table: columns_priv | | help_category | Table: columns_priv | | help_keyword | Table: columns_priv | | help_relation | Table: columns_priv | | help_topic | Table: columns_priv | | host | Table: columns_priv | | proc | Table: columns_priv | | procs_priv | Table: columns_priv | | tables_priv | Table: columns_priv | | time_zone | Table: columns_priv | | time_zone_leap_second | Table: columns_priv | | time_zone_name | Table: columns_priv | | time_zone_transition | Table: columns_priv | | time_zone_transition_type | Table: columns_priv | | user | Table: columns_priv | +---------------------------+------------------------------------+ 17 rows in set (0.03 sec) mysql> exit Bye miguel@txg:~/dbs/5.1$ bin/mysqladmin -uroot shutdown miguel@txg:~/dbs/5.1$ cd .. miguel@txg:~/dbs$ 6.0/bin/mysql -uroot test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 6.0.11-alpha-debug Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> SELECT TABLE_NAME, REPLACE('Table: ?','?',TABLE_NAME) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'mysql'; +---------------------------+------------------------------------+ | TABLE_NAME | REPLACE('Table: ?','?',TABLE_NAME) | +---------------------------+------------------------------------+ | backup_history | Table: backup_history | | backup_progress | Table: backup_progress | | columns_priv | Table: columns_priv | | db | Table: db | | event | Table: event | | func | Table: func | | general_log | Table: general_log | | help_category | Table: help_category | | help_keyword | Table: help_keyword | | help_relation | Table: help_relation | | help_topic | Table: help_topic | | host | Table: host | | ndb_binlog_index | Table: ndb_binlog_index | | plugin | Table: plugin | | proc | Table: proc | | procs_priv | Table: procs_priv | | servers | Table: servers | | slow_log | Table: slow_log | | tables_priv | Table: tables_priv | | time_zone | Table: time_zone | | time_zone_leap_second | Table: time_zone_leap_second | | time_zone_name | Table: time_zone_name | | time_zone_transition | Table: time_zone_transition | | time_zone_transition_type | Table: time_zone_transition_type | | user | Table: user | +---------------------------+------------------------------------+ 25 rows in set (0.02 sec)