D:\yxhj\mysql\bin>mysql
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 6 to server version: 4.0.18-max-nt-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>use test;
datebase changed
mysql> description;
ERROR 1064: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server
version for the right syntax to use near 'description' at line 1
mysql>
说明:我把MYSQL数据库安装在了d:\yxhj\mysql目录下,并在MYSQL数据库中,建了个test库,但当我通过PHP的程序和数据库连接后,每次插入数据都能插入一条记录,但是插入的记录的所有字段都是空的,就是说每次通过PHP连接程序提交给MYSQL数据库的都是空记录,不能把自己输入的真实内容提交给数据库,我不知道是什么错误,我在命令行中输入相应命令后,结果如上,请帮忙看看那些红色字的错误,错在哪里?是不是因为那个红色错误才导致我每次提交的数据都是空的记录?我看到上面的蓝色字"welcome to ......"是不是说明我的MYSQL数据库已经连接成功?那些红色字"ERROR 1064....."是怎么回事,望高手指教.