
February 12th, 2000, 07:39 AM
|
|
Apprentice Deity
|
|
Join Date: Jul 1999
Location: Niagara Falls (On the wrong side of the gorge)
Posts: 3,237

Time spent in forums: 4 m 8 sec
Reputation Power: 17
|
|
|
Actually, you can't "alter" a database. You can "alter" a table. The only way to alter a database is to add/drop/modify tables (and of course drop the db).
To create a database:
create database dbname;
Now you can:
use dbname;
and begin to create tables for that db.
|