forum# mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 to server version: 4.1.7 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show databases -> ; +----------+ | Database | +----------+ | mysql | | test | +----------+ 2 rows in set (0.05 sec) mysql> use mysql Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> show tables; +---------------------------+ | Tables_in_mysql | +---------------------------+ | columns_priv | | db | | func | | help_category | | help_keyword | | help_relation | | help_topic | | host | | tables_priv | | time_zone | | time_zone_leap_second | | time_zone_name | | time_zone_transition | | time_zone_transition_type | | user | +---------------------------+ 15 rows in set (0.01 sec) mysql> select host,user,password,select_priv from user; +--------------------+------+----------+-------------+ | host | user | password | select_priv | +--------------------+------+----------+-------------+ | localhost | root | | Y | | forum.soft-help.ru | root | | Y | | forum.soft-help.ru | | | N | | localhost | | | N | +--------------------+------+----------+-------------+ 4 rows in set (0.00 sec) mysql> exit Bye forum#