:
[root@localhost SF]# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with; or g.
Your MySQL connection id is 20 to server version: 3.23.58
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
mysql> show databases;
+-------------+
| Database |
+-------------+
| drupal |
| molyx |
| mysql |
| sourceforge |
| test |
+-------------+
5 rows in set (0.01 sec)
mysql> drop database `drupal`;
Query OK, 0 rows affected (0.06 sec)
mysql> drop database `molyx`;
Query OK, 0 rows affected (0.01 sec)
mysql> show databases;
+-------------+
| Database |
+-------------+
| drupal |
| molyx |
| mysql |
| sourceforge |
| test |
+-------------+
5 rows in set (0.00 sec)
环境:Fedora Core 2
用户:root
MySQL version:mysql Ver 11.18 Distrib 3.23.58, for redhat-linux-gnu (i386)
我郁闷了,准备卸载装新的版本,另外还有导入SQL一直出错,提示语法错误(但是确实没有错误,我在WIN下可以导入)
有谁知道什么原因么?