Книга: Fedora™ Unleashed, 2008 edition
Creating a Database in MySQL
Creating a Database in MySQL
In MySQL, you create a database by using the CREATE DATABASE
statement. To create a database, you connect to the server by typing mysql -u root -p
and pressing Enter. After you do so, you are connected to the database as the MySQL root user and prompted for a password. After you enter the password, you are placed at the MySQL command prompt. Then you use the CREATE DATABASE
command. For example, the following commands create a database called animals
:
# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 1 to server version: 3.23.58
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
mysql> CREATE DATABASE animals;
Query OK, 1 row affected (0.00 sec)
mysql>
Another way to create a database is to use the mysqladmin
command, as the root user, with the create
keyword and the name of a new database. For example, to create a new database named reptiles
, you use a command line like this:
# mysqladmin -u root -p create reptiles
- Configuring MySQL
- Setting a Password for the MySQL Root User
- Granting and Revoking Privileges in PostgreSQL
- Database Clients
- MySQL
- Assemblies
- Private versus Shared Assemblies
- 27. Practical: An MP3 Database
- Creating an Event Procedure
- 3. Practical: A Simple Database
- Оператор CREATE DATABASE
- Database Workbench