请教mysql的初级问题,嘘,我才学,别笑!

请教mysql的初级问题,嘘,我才学,别笑!

我按照这里的文章的介绍,安装了mysql,已经可以启动,也能进入到mysql的提示符下,但是在这下面用CREATE TABLE命令建立数据库的时候,总说"no database selected",我是用root用户联接的mysql啊,这是怎么回事情?请教各位高手高手高高手!      
mysql>show  databases;
+----------+
| Database |
+----------+
| bbs      |
| mail     |
| mysql    |
| test     |
+----------+
4 rows in set (0.08 sec)
mysql>use test;

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_test |
+----------------+
| aaa            |
| ab             |
+----------------+
2 rows in set (0.00 sec)

mysql>create table.....      
oh,yeah!呵呵,有点明白了。要先建立库,在建表,是吧?嘿,简直是猪脑子!!!