Kevin:
A database is, in some sense, a container for your tables. It sounds
like you want
to compose a new container. Thus,

To list your databases (containers):
mysql> show databases;
... it seems that the list should contain your dbb and mysql, probably
also "test".

To create a new database (container):
mysql> create database new_dbb;

Next, you would be able to "use new_dbb;" and begin creating tables in
it,
using the 'create table' SQL statement.

Cheers,

Kent.



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to