Helpful Information
 
 
Category: MySQL Help
Database creating

What do I use to make and modify a database.

create and alter; RTFM!

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.










privacy (GDPR)